Property expressions must not be blank

This commit is contained in:
Nick O'Leary
2017-01-06 21:58:17 +00:00
parent c989c533e8
commit 73a41707e5
3 changed files with 7 additions and 0 deletions

View File

@@ -361,6 +361,7 @@ describe("red/util", function() {
it("fail a[0].[1]",function() { testInvalid("a[0].[1]"); })
it("fail a['']",function() { testInvalid("a['']"); })
it("fail 'a.b'c",function() { testInvalid("'a.b'c"); })
it("fail <blank>",function() { testInvalid("");})
});
});