Home | History | Annotate | Download | only in cctest

Lines Matching refs:Check

59   void Check(const char* source,
126 void DeclarationContext::Check(const char* source,
142 CHECK(!catcher.HasCaught());
147 CHECK(expectations == EXPECT_EXCEPTION);
148 CHECK(catcher.HasCaught());
208 context.Check("var x; x",
216 context.Check("var x = 0; x",
224 context.Check("function x() { }; x",
232 context.Check("const x; x",
240 context.Check("const x = 0; x",
263 context.Check("var x; x",
271 context.Check("var x = 0; x",
279 context.Check("function x() { }; x",
287 context.Check("const x; x",
295 context.Check("const x = 0; x",
317 context.Check("var x; x",
325 context.Check("var x = 0; x",
333 context.Check("function x() { }; x",
341 context.Check("const x; x",
349 context.Check("const x = 0; x",
357 context.Check("if (false) { var x = 0 }; x",
391 CHECK(state_ == UNKNOWN);
407 context.Check("var x; x",
415 context.Check("var x = 0; x",
423 context.Check("function x() { }; x",
431 context.Check("const x; x",
439 context.Check("const x = 0; x",
483 CHECK(state_ == UNKNOWN);
499 context.Check("const x; var x = 0",
526 // Sanity check to make sure that the holder of the interceptor
529 context.Check("this.x = 87; this.x",
537 context.Check("var x; x",
545 context.Check("var x = 0; x",
553 context.Check("const x; x",
561 context.Check("const x = 0; x",
589 context.Check("if (false) { var x = 0; }; x",