Lines Matching refs:CompileRun

2496   CompileRun("debug.Debug.setBreakPoint(foo, 2, 0, 'true')");  in TEST()
2750 CompileRun("a=0; b=0; c=0; foo();"); in TEST()
2989 CompileRun("a=0; b=0; bar(); foo();"); in TEST()
4100 CompileRun( in TEST()
4415 CompileRun("debugger;"); in TEST()
4421 CompileRun("debugger;"); in TEST()
4556 CompileRun( in TEST()
4560 CHECK(CompileRun("named_mirror instanceof debug.ObjectMirror") in TEST()
4563 CHECK(CompileRun("indexed_mirror instanceof debug.ObjectMirror") in TEST()
4566 CHECK(CompileRun("both_mirror instanceof debug.ObjectMirror") in TEST()
4571 CompileRun( in TEST()
4575 CHECK_EQ(3, CompileRun("named_names.length")->Int32Value(context).FromJust()); in TEST()
4577 CompileRun("indexed_names.length")->Int32Value(context).FromJust()); in TEST()
4578 CHECK_EQ(5, CompileRun("both_names.length")->Int32Value(context).FromJust()); in TEST()
4583 CHECK_EQ(3, CompileRun(source)->Int32Value(context).FromJust()); in TEST()
4586 CHECK_EQ(2, CompileRun(source)->Int32Value(context).FromJust()); in TEST()
4589 CHECK_EQ(5, CompileRun(source)->Int32Value(context).FromJust()); in TEST()
4592 CompileRun("var named_values = named_mirror.properties()"); in TEST()
4599 CHECK(CompileRun(buffer.start())->BooleanValue(context).FromJust()); in TEST()
4602 CHECK(CompileRun(buffer.start())->BooleanValue(context).FromJust()); in TEST()
4607 CompileRun("var indexed_values = indexed_mirror.properties()"); in TEST()
4614 CHECK(CompileRun(buffer.start())->BooleanValue(context).FromJust()); in TEST()
4619 CompileRun("var both_values = both_mirror.properties()"); in TEST()
4625 CHECK(CompileRun(buffer.start())->BooleanValue(context).FromJust()); in TEST()
4630 CHECK(CompileRun(source)->BooleanValue(context).FromJust()); in TEST()
4633 CHECK(CompileRun(source)->BooleanValue(context).FromJust()); in TEST()
4636 CHECK(CompileRun(source)->BooleanValue(context).FromJust()); in TEST()
4639 CHECK(CompileRun(source)->BooleanValue(context).FromJust()); in TEST()
4642 CHECK(CompileRun(source)->BooleanValue(context).FromJust()); in TEST()
4692 CompileRun( in TEST()
4697 CHECK(CompileRun("o0_mirror instanceof debug.ObjectMirror") in TEST()
4700 CHECK(CompileRun("o1_mirror instanceof debug.ObjectMirror") in TEST()
4703 CHECK(CompileRun("o2_mirror instanceof debug.ObjectMirror") in TEST()
4706 CHECK(CompileRun("o3_mirror instanceof debug.ObjectMirror") in TEST()
4711 CHECK_EQ(1, CompileRun("o0_mirror.propertyNames().length") in TEST()
4714 CHECK_EQ(1, CompileRun("o1_mirror.propertyNames().length") in TEST()
4717 CHECK_EQ(1, CompileRun("o2_mirror.propertyNames().length") in TEST()
4720 CHECK_EQ(1, CompileRun("o3_mirror.propertyNames().length") in TEST()
4727 CHECK_EQ(2, CompileRun("o0_mirror.propertyNames().length") in TEST()
4730 CHECK_EQ(0, CompileRun("o0_mirror.property('x').value().value()") in TEST()
4733 CHECK_EQ(1, CompileRun("o0_mirror.property('y').value().value()") in TEST()
4741 CHECK_EQ(3, CompileRun("o0_mirror.propertyNames().length") in TEST()
4744 CHECK_EQ(0, CompileRun("o0_mirror.property('x').value().value()") in TEST()
4747 CHECK_EQ(1, CompileRun("o0_mirror.property('y').value().value()") in TEST()
4750 CHECK_EQ(2, CompileRun("o0_mirror.property('z').value().value()") in TEST()
4761 CHECK_EQ(3, CompileRun("o0_mirror.propertyNames().length") in TEST()
4764 CHECK_EQ(1, CompileRun("o3_mirror.propertyNames().length") in TEST()
4767 CHECK_EQ(0, CompileRun("o0_mirror.property('x').value().value()") in TEST()
4770 CHECK_EQ(1, CompileRun("o0_mirror.property('y').value().value()") in TEST()
4773 CHECK_EQ(2, CompileRun("o0_mirror.property('z').value().value()") in TEST()
4776 CHECK(CompileRun("o0_mirror.property('u').isUndefined()") in TEST()
4781 CHECK(CompileRun("o0_mirror.protoObject() == o3_mirror") in TEST()
4813 CHECK_EQ(10, CompileRun("instance.x")->Int32Value(context).FromJust()); in TEST()
4816 CompileRun("var instance_mirror = debug.MakeMirror(instance);"); in TEST()
4817 CHECK(CompileRun("instance_mirror instanceof debug.ObjectMirror") in TEST()
4821 CompileRun("var named_names = instance_mirror.propertyNames();"); in TEST()
4822 CHECK_EQ(1, CompileRun("named_names.length")->Int32Value(context).FromJust()); in TEST()
4823 CHECK(CompileRun("named_names[0] == 'x'")->BooleanValue(context).FromJust()); in TEST()
4824 CHECK(CompileRun("instance_mirror.property('x').value().isNumber()") in TEST()
4827 CHECK(CompileRun("instance_mirror.property('x').value().value() == 10") in TEST()
4836 CompileRun("throw new Error('Error message');"); in ProtperyXNativeGetterThrowingError()
4861 CompileRun("var instance_mirror = debug.MakeMirror(instance);"); in TEST()
4862 CHECK(CompileRun("instance_mirror instanceof debug.ObjectMirror") in TEST()
4865 CompileRun("named_names = instance_mirror.propertyNames();"); in TEST()
4866 CHECK_EQ(1, CompileRun("named_names.length")->Int32Value(context).FromJust()); in TEST()
4867 CHECK(CompileRun("named_names[0] == 'x'")->BooleanValue(context).FromJust()); in TEST()
4868 CHECK(CompileRun("instance_mirror.property('x').value().isError()") in TEST()
4874 CompileRun( in TEST()
4908 CompileRun("var obj_mirror = debug.MakeMirror(obj);"); in TEST()
4909 CHECK(CompileRun("obj_mirror instanceof debug.ObjectMirror") in TEST()
4912 CompileRun("var named_names = obj_mirror.propertyNames();"); in TEST()
4916 CHECK_EQ(1, CompileRun("named_names.length")->Int32Value(context).FromJust()); in TEST()
4917 CHECK(CompileRun("named_names[0] == 'a'")->BooleanValue(context).FromJust()); in TEST()
4918 CHECK(CompileRun("obj_mirror.property('a').value().value() == 1") in TEST()
4964 CompileRun("var obj_mirror = debug.MakeMirror(obj);"); in TEST()
4965 CHECK(CompileRun("obj_mirror instanceof debug.ObjectMirror") in TEST()
4968 CompileRun("var named_names = obj_mirror.propertyNames();"); in TEST()
4971 CHECK_EQ(2, CompileRun("named_names.length")->Int32Value(context).FromJust()); in TEST()
4972 CHECK(CompileRun("named_names.sort(); named_names[0] == 'a' &&" in TEST()
4976 CHECK(CompileRun("obj_mirror.property('a').value().value() == 1") in TEST()
4979 CHECK(CompileRun("obj_mirror.property('b').value().value() == 2") in TEST()
5266 CompileRun(source_1); in TEST()
5269 CompileRun(source_2); in TEST()
5271 CompileRun(source_3); in TEST()
5379 CompileRun(source_1); in TEST()
5473 CompileRun(source); in Run()
5599 CompileRun(source_1); in Run()
5602 CompileRun(source_2); in Run()
6099 CompileRun("throw 1"); in TEST()
6110 CompileRun("throw 1"); in TEST()
6143 CompileRun("throw 1"); in TEST()
6187 CompileRun(env.context(), in TEST()
6413 CompileRun(script); in TEST()
7035 CompileRun("start(); while (true) { }"); in TEST()
7192 v8::Local<v8::Function> func = v8::Local<v8::Function>::Cast(CompileRun( in DebugEventGetAtgumentPropertyValue()
7504 CompileRun(buffer.start()); in TestDebugBreakInLoop()
7510 CompileRun("f();"); in TestDebugBreakInLoop()
7545 CompileRun( in DebugBreakLoop()
7633 v8::Local<v8::Value> result = CompileRun(script); in DebugBreakInlineListener()
7642 v8::Local<v8::Value> result = CompileRun(script); in DebugBreakInlineListener()
7690 CompileRun(source); in RunScriptInANewCFrame()
7716 CompileRun(script_2); in TEST()
7741 CompileRun("debugger;"); in TEST()
7745 CompileRun("debugger;"); in TEST()
7757 CompileRun("%LiveEditCompareStrings('', '')"); in TEST()
7766 CompileRun("%LiveEditCompareStrings('', '')"); in TEST()
7830 CompileRun("(function loop() {" in TEST()
7880 CompileRun("while (true);"); in TEST()
7895 CompileRun("throw 'rejection';"); in TryCatchWrappedThrowCallback()
7915 CompileRun("var p = new Promise(function(res, rej) { fun(); res(); });"); in TEST()
7916 CompileRun( in TEST()
7920 CHECK(CompileRun("r")->Equals(context, v8_str("resolved")).FromJust()); in TEST()
7935 CompileRun("throw 'rejection';"); in ThrowCallback()
7955 CompileRun("var p = new Promise(function(res, rej) { fun(); res(); });"); in TEST()
7956 CompileRun( in TEST()
7961 CompileRun("r")->Equals(context, v8_str("rejectedrejection")).FromJust()); in TEST()
7984 CompileRun( in TEST()
7992 CHECK(CompileRun("callbackRan")->BooleanValue(context).FromJust()); in TEST()
8010 CompileRun(script); in DebugHarmonyScopingListener()
8014 CompileRun("var allScopes = frame.allScopes()"); in DebugHarmonyScopingListener()
8023 CompileRun("allScopes[0].setVariableValue('x', 5);"); in DebugHarmonyScopingListener()
8024 CompileRun("allScopes[0].setVariableValue('y', 6);"); in DebugHarmonyScopingListener()
8037 CompileRun( in TEST()
8066 CompileRun("function foo() {}; foo();"); in NoInterruptsOnDebugEvent()
8074 CompileRun("void(0);"); in TEST()