Home | History | Annotate | Download | only in webkit

Lines Matching refs:static

41 shouldNotThrow("class A { static foo() { } ; }");
42 shouldNotThrow("class A { static get foo() { } ; }");
43 shouldNotThrow("class A { static set foo(x) { } ; }");
48 shouldNotThrow("class A { ; static foo() { } }");
49 shouldNotThrow("class A { ; static get foo() { } }");
50 shouldNotThrow("class A { ; static set foo(x) { } }");
55 shouldNotThrow("class A { foo() { } ; static foo() {} }");
56 shouldNotThrow("class A { foo() { } ; static get foo() {} }");
57 shouldNotThrow("class A { foo() { } ; static set foo(x) {} }");
62 shouldNotThrow("class A { get foo() { } ; static foo() {} }");
63 shouldNotThrow("class A { get foo() { } ; static get foo() {} }");
64 shouldNotThrow("class A { get foo() { } ; static set foo(x) {} }");
69 shouldNotThrow("class A { set foo(x) { } ; static foo() {} }");
70 shouldNotThrow("class A { set foo(x) { } ; static get foo() {} }");
71 shouldNotThrow("class A { set foo(x) { } ; static set foo(x) {} }");
73 shouldNotThrow("class A { static foo() { } ; foo() {} }");
74 shouldNotThrow("class A { static foo() { } ; get foo() {} }");
75 shouldNotThrow("class A { static foo() { } ; set foo(x) {} }");
76 shouldNotThrow("class A { static foo() { } ; static foo() {} }");
77 shouldNotThrow("class A { static foo() { } ; static get foo() {} }");
78 shouldNotThrow("class A { static foo() { } ; static set foo(x) {} }");
80 shouldNotThrow("class A { static get foo() { } ; foo() {} }");
81 shouldNotThrow("class A { static get foo() { } ; get foo() {} }");
82 shouldNotThrow("class A { static get foo() { } ; set foo(x) {} }");
83 shouldNotThrow("class A { static get foo() { } ; static foo() {} }");
84 shouldNotThrow("class A { static get foo() { } ; static get foo() {} }");
85 shouldNotThrow("class A { static get foo() { } ; static set foo(x) {} }");
87 shouldNotThrow("class A { static set foo(x) { } ; foo() {} }");
88 shouldNotThrow("class A { static set foo(x) { } ; get foo() {} }");
89 shouldNotThrow("class A { static set foo(x) { } ; set foo(x) {} }");
90 shouldNotThrow("class A { static set foo(x) { } ; static foo() {} }");
91 shouldNotThrow("class A { static set foo(x) { } ; static get foo() {} }");
92 shouldNotThrow("class A { static set foo(x) { } ; static set foo(x) {} }");