OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:scopeobject
(Results
1 - 25
of
27
) sorted by null
1
2
/external/v8/test/mjsunit/regress/
regress-crbug-582051.js
31
assertEquals(2, scopes[0].
scopeObject
().value().x);
32
if (test_y) assertEquals(3, scopes[0].
scopeObject
().value().y);
33
assertEquals(1, scopes[1].
scopeObject
().value().a);
regress-4309-2.js
15
assertEquals(5, scope.
scopeObject
().property("i").value().value());
regress-crbug-582048.js
18
assertTrue(scope.
scopeObject
().property('').isUndefined());
/external/v8/test/mjsunit/es6/
debug-scope-default-param-with-eval.js
46
assertTrue(block_scope.
scopeObject
().propertyNames().includes('y'));
47
assertEquals(7, block_scope.
scopeObject
().property('y').value().value());
generators-debug-scopes.js
53
assertPropertiesEqual(scope1.
scopeObject
().value(), scope2.
scopeObject
().value());
82
assertPropertiesEqual(this, scope.
scopeObject
().value());
120
var property_mirror = scope.
scopeObject
().property(p);
132
var scope_size = scope.
scopeObject
().properties().length;
133
if (!scope.
scopeObject
().property('arguments').isUndefined()) {
137
if (!scope.
scopeObject
().property('').isUndefined()) {
143
var names = scope.
scopeObject
().propertyNames();
debug-blockscopes.js
95
assertPropertiesEqual(global_object, scope.
scopeObject
().value());
132
var property_mirror = scope.
scopeObject
().property(p);
147
var scope_size = scope.
scopeObject
().properties().length;
148
if (!scope.
scopeObject
().property('arguments').isUndefined()) {
152
assertTrue(scope.
scopeObject
().property('').isUndefined());
156
var names = scope.
scopeObject
().propertyNames();
debug-evaluate-blockscopes.js
98
assertEquals(1, allScopes[0].
scopeObject
().value().i);
debug-function-scopes.js
39
var scope_object = scope_mirror.
scopeObject
().value();
/external/v8/test/mjsunit/
debug-eval-scope.js
32
assertEquals(1, scope.
scopeObject
().property("a").value().value());
62
assertTrue(scope.
scopeObject
().property("a").isUndefined());
80
assertTrue(scope.
scopeObject
().property("a").isUndefined());
101
assertEquals(1, scope.
scopeObject
().property("a").value().value());
129
assertEquals(1, scope.
scopeObject
().property("a").value().value());
debug-scopes.js
84
assertPropertiesEqual(scope1.
scopeObject
().value(), scope2.
scopeObject
().value());
115
assertPropertiesEqual(this, scope.
scopeObject
().value());
166
var property_mirror = scope.
scopeObject
().property(p);
178
var scope_size = scope.
scopeObject
().properties().length;
179
if (!scope.
scopeObject
().property('arguments').isUndefined()) {
183
if (!scope.
scopeObject
().property('this').isUndefined()) {
187
assertTrue(scope.
scopeObject
().property('').isUndefined());
191
var names = scope.
scopeObject
().propertyNames();
477
assertEquals(exec_state.frame().scope(0).
scopeObject
(), exec_state.frame().scope(1).scopeObject())
[
all
...]
debug-stepout-scope-part2.js
43
scope.
scopeObject
();
debug-stepout-scope-part4.js
43
scope.
scopeObject
();
debug-stepout-scope-part6.js
43
scope.
scopeObject
();
debug-stepout-scope-part7.js
43
scope.
scopeObject
();
debug-stepout-scope-part1.js
43
scope.
scopeObject
();
debug-stepout-scope-part3.js
43
scope.
scopeObject
();
debug-stepout-scope-part5.js
43
scope.
scopeObject
();
debug-stepout-scope-part8.js
43
scope.
scopeObject
();
debug-evaluate-locals-optimized-double.js
99
frame.scope(0).
scopeObject
().value()[name]);
106
frame.scope(0).
scopeObject
().value()[arg_name]);
debug-evaluate-locals-optimized.js
90
frame.scope(0).
scopeObject
().value()[name]);
97
frame.scope(0).
scopeObject
().value()[arg_name]);
debug-function-scopes.js
36
var scope_object = scope_mirror.
scopeObject
().value();
/external/v8/test/mjsunit/bugs/harmony/
debug-blockscopes.js
93
assertPropertiesEqual(this, scope.
scopeObject
().value());
129
var property_mirror = scope.
scopeObject
().property(p);
144
var scope_size = scope.
scopeObject
().properties().length;
145
if (!scope.
scopeObject
().property('arguments').isUndefined()) {
149
if (!scope.
scopeObject
().property('').isUndefined()) {
155
var names = scope.
scopeObject
().propertyNames();
/external/v8/test/mjsunit/harmony/
async-function-debug-scopes.js
487
scope1.
scopeObject
().value(), scope2.
scopeObject
().value());
516
assertPropertiesEqual(this, scope.
scopeObject
().value());
555
var property_mirror = scope.
scopeObject
().property(p);
569
var scope_size = scope.
scopeObject
().properties().length;
570
if (!scope.
scopeObject
().property('arguments').isUndefined()) {
574
if (!scope.
scopeObject
().property('').isUndefined()) {
580
var names = scope.
scopeObject
().propertyNames();
/external/v8/src/debug/
debug-scopes.h
64
MaybeHandle<JSObject>
ScopeObject
();
debug-scopes.cc
143
ASSIGN_RETURN_ON_EXCEPTION(isolate_, scope_object,
ScopeObject
(), JSObject);
268
MaybeHandle<JSObject> ScopeIterator::
ScopeObject
() {
Completed in 1136 milliseconds
1
2