File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15627,7 +15627,7 @@ var a = "test2";
1562715627 const code = BROKEN_TEST_CODE;
1562815628
1562915629 it("should report a violation with a useful parse error prefix", () => {
15630- const messages = linter.verify(code);
15630+ const messages = linter.verify(code, {} );
1563115631 const suppressedMessages = linter.getSuppressedMessages();
1563215632
1563315633 assert.strictEqual(messages.length, 1);
@@ -15648,7 +15648,7 @@ var a = "test2";
1564815648 " x++;",
1564915649 "}"
1565015650 ];
15651- const messages = linter.verify(inValidCode.join("\n"));
15651+ const messages = linter.verify(inValidCode.join("\n"), {} );
1565215652 const suppressedMessages = linter.getSuppressedMessages();
1565315653
1565415654 assert.strictEqual(messages.length, 1);
@@ -16584,7 +16584,7 @@ var a = "test2";
1658416584 });
1658516585
1658616586 it("should not crash when invalid parentheses syntax is encountered", () => {
16587- linter.verify("left = (aSize.width/2) - ()");
16587+ linter.verify("left = (aSize.width/2) - ()", {} );
1658816588 });
1658916589
1659016590 it("should not crash when let is used inside of switch case", () => {
You can’t perform that action at this time.
0 commit comments