Skip to content

Commit 7850974

Browse files
Update shim tests.
1 parent 557b795 commit 7850974

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/cases/fourslash/shims/getSyntacticClassifications.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ var c = classification;
2222
verify.syntacticClassificationsAre(
2323
c.comment("// comment"),
2424
c.keyword("module"), c.moduleName("M"), c.punctuation("{"),
25-
c.keyword("var"), c.text("v"), c.operator("="), c.numericLiteral("0"), c.operator("+"), c.numericLiteral("1"), c.punctuation(";"),
26-
c.keyword("var"), c.text("s"), c.operator("="), c.stringLiteral('"string"'), c.punctuation(";"),
25+
c.keyword("var"), c.identifier("v"), c.operator("="), c.numericLiteral("0"), c.operator("+"), c.numericLiteral("1"), c.punctuation(";"),
26+
c.keyword("var"), c.identifier("s"), c.operator("="), c.stringLiteral('"string"'), c.punctuation(";"),
2727
c.keyword("class"), c.className("C"), c.punctuation("<"), c.typeParameterName("T"), c.punctuation(">"), c.punctuation("{"),
2828
c.punctuation("}"),
2929
c.keyword("enum"), c.enumName("E"), c.punctuation("{"),

0 commit comments

Comments
 (0)