Added unit test for property access colorization.

This commit is contained in:
Daniel Rosenwasser 2014-09-23 13:59:47 -07:00
parent 1c73189fa1
commit 4493aa60eb

View File

@ -168,7 +168,14 @@ describe('Colorization', function () {
identifier("var"));
});
it("classifies keyword after a dot on previous line", function () {
it("classifies a property access with whitespace around the dot", function () {
test(" x .\tfoo ()",
ts.EndOfLineState.Start,
identifier("x"),
identifier("foo"));
});
it("classifies a keyword after a dot on previous line", function () {
test("var",
ts.EndOfLineState.Start,
keyword("var"),