runtime-global-lexical-scope-names-expected.txt 770 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
Test for Runtime.globalLexicalScopeVariablesNames
Running 'let a = 1'
Values:
a = 1

Running 'let b = 2'
Values:
a = 1
b = 2

Running 'let b = 3'
Values:
a = 1
b = 2

Running 'const c = 4'
Values:
a = 1
b = 2
c = 4

Running 'var d = 5'
(should not be in list of scoped variables)
Values:
a = 1
b = 2
c = 4

Running 'class Foo{}'
Values:
a = 1
b = 2
c = 4
Foo =
{
    className : Function
    description : class Foo{}
    objectId : <objectId>
    type : function
}

Adding script with scope variables
Values:
a = 1
b = 2
c = 4
Foo =
{
    className : Function
    description : class Foo{}
    objectId : <objectId>
    type : function
}
e = 1
f = 2
g = 3
Boo =
{
    className : Function
    description : class Boo {}
    objectId : <objectId>
    type : function
}