Address code review

This commit is contained in:
Yui T
2014-12-12 10:13:47 -08:00
parent 6251127152
commit 04c9cbfbd4
+1 -1
View File
@@ -5360,7 +5360,7 @@ module ts {
// Grammar checking for computedPropertyName
forEach(node.properties, property => {
if (property.name && property.name.kind === SyntaxKind.ComputedPropertyName) {
if (property.name.kind === SyntaxKind.ComputedPropertyName) {
checkGrammarComputedPropertyName(<ComputedPropertyName>property.name);
}
});