| /arkcompiler/ets_frontend/arkguard/test/grammar/getsetaccessor/defaultConfig/ |
| D | object_literal_get.ts | 17 get foo1() { variable 19 get foo1() { 27 get foo1() { method in X1 29 get foo1() { 37 get foo1(): { method 38 get foo1(): { 39 get foo1(): {}
|
| D | object_literal_get_expected.txt | 16 get foo1() { 18 get foo1() { 25 get foo1() { 27 get foo1() { 34 get foo1(): { 35 get foo1(): { 36 get foo1(): {};
|
| /arkcompiler/ets_frontend/ets2panda/linter/test/main/ |
| D | imported_use_as_object.ets | 22 function foo1(f: Function) { } 25 foo1(() => OuterC); 29 foo1(() => OuterN); 33 foo1(() => OuterE); 37 foo1(() => InnerC); 41 foo1(() => InnerN); 45 foo1(() => InnerE);
|
| /arkcompiler/ets_frontend/ets2panda/linter/test/interop/ |
| D | no_js_instanceof.ets | 18 class Foo1 {} 20 let foo1 = new Foo1() 22 if(foo1 instanceof Foo1) { 30 if(foo1 instanceof Foo) { 34 if(foo instanceof Foo1) {
|
| D | no_js_instanceof.ets.migrate.ets | 25 class Foo1 {} 27 let foo1 = new Foo1() 29 if(foo1 instanceof Foo1) { 37 if(foo1.isInstanceOf(Foo)) { 41 if(foo.isInstanceOf(Foo1)) {
|
| /arkcompiler/ets_runtime/test/aottest/pgo_call_recursive_js/ |
| D | expect_output.txt | 15 [trace] aot inline function name: #*#foo1@pgo_call_recursive_js caller function name: #*#foo@pgo_ca… 16 [trace] aot inline function name: #*#foo2@pgo_call_recursive_js caller function name: #*#foo1@pgo_c… 17 [trace] aot inline function name: #*#foo1@pgo_call_recursive_js caller function name: #*#foo@pgo_ca… 18 [trace] aot inline function name: #*#foo2@pgo_call_recursive_js caller function name: #*#foo1@pgo_c… 21 [trace] aot inline function name: #*#foo1@pgo_call_recursive_js caller function name: #*#foo@pgo_ca… 22 [trace] aot inline function name: #*#foo2@pgo_call_recursive_js caller function name: #*#foo1@pgo_c… 24 [trace] aot inline function name: #*#foo1@pgo_call_recursive_js caller function name: #*#foo@pgo_ca… 25 [trace] aot inline function name: #*#foo2@pgo_call_recursive_js caller function name: #*#foo1@pgo_c…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/escompat_demo/out/ |
| D | demo.js | 18 const foo1 = require('./foo.abc'); constant 21 arr.push(new foo1.FooClass('zero')); 22 arr.push(new foo1.FooClass('one')); 23 arr.push(new foo1.FooClass('two')); 24 print('test: ' + (0, foo1.FooFunction)(arr)); 25 const arr2 = (0, foo1.BarFunction)();
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/13.compilation_units/08.namespace_declarations/ |
| D | namespace_declarations_neg13.ets | 17 desc: ES2PANDA_FAIL - 'foo1' is not exported in 'NS15' 22 function foo1() { 23 return "Foo1"; 26 return NS15.foo1() 31 assertEQ(NS15.foo2(), "Foo1")
|
| D | namespace_declarations_neg15.ets | 17 desc: ES2PANDA_FAIL - 'foo1' is not exported in 'NS15' 23 return "Foo1" 28 assertEQ(abstract.boo(), "Foo1")
|
| /arkcompiler/ets_frontend/ets2panda/test/runtime/ets/ |
| D | implementsClassPropertyFunctionType2.ets | 17 foo1: () => void 22 foo1 = () => { } 30 let x1 = b.foo1 32 b.foo1()
|
| D | type_param_infer_in_union_1.ets | 17 function foo1<U>(array:Iterable<A<U>|U>){ 18 return "foo1 should be ok" 26 assertEQ(foo1(a), "foo1 should be ok")
|
| D | implementsClassPropertyFunctionType.ets | 17 foo1: () => string 21 foo1 = (): string => { 28 assertEQ(b.foo1(), "B")
|
| /arkcompiler/ets_runtime/test/aottest/fast_call_func_check/ |
| D | fast_call_func_check.ts | 36 function foo1(a: number): number { function 42 callFoo(foo1, 1); 44 callFoo(new Bar(foo1), 2); 64 foo1 : function*() { 68 var func = a.foo1;
|
| /arkcompiler/ets_frontend/ets2panda/test/runtime/ets/namespace_tests/ |
| D | namespace_merge_test.ets | 17 export function foo1():string {return "foo1"} 34 assertEQ(A.foo1(), "foo1")
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/05.generics/02.generic_instantiations/01.type_arguments/type_arguments_of_parameterized_declarations/ |
| D | func_args3_neg.params.yaml | 16 - use: foo1 <in> (new X()) 17 - use: foo1 <in X> (new X()) 18 - use: foo1 <out> (new X()) 19 - use: foo1 <out X> (new X())
|
| /arkcompiler/ets_frontend/ets2panda/test/parser/ets/ |
| D | method_override_throw_1.ets | 17 foo1(): void throws; 23 override foo1(): void throws {} 29 foo1(): void throws {} 35 override foo1(): void throws {}
|
| /arkcompiler/ets_frontend/ets2panda/linter/test/rules/ |
| D | rule52.ets | 19 foo1() { 30 c12.foo1 = bar; 32 c11.foo1(); // foo 33 c12.foo1(); // bar
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/ |
| D | absent_return_statement.ets | 16 function foo1(bar: () => int|string|undefined) { 29 foo1(() => { return /* @@ label1 */new C(); }); 30 foo1(() => { console.println("TEST"); }); 31 foo1(() => /* @@ label2 */new C()); 32 foo1(() => console.println("TEST"));
|
| /arkcompiler/ets_frontend/ets2panda/bindings/test/testcases/getDocumentHighlights/ |
| D | getDocumentHighlights4.ets | 20 let foo1 = new Foo(); 21 foo1.aaa = 222 25 return foo2.aaa + foo1.aaa;
|
| D | getDocumentHighlights3.ets | 20 let foo1 = new Foo(); 21 foo1.aaa = 222 25 return foo2.aaa + foo1.aaa;
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/test_optional_params/ets_to_ts/ |
| D | test_optional_params_ets_to_ts.ts | 18 let foo1 = etsVm.getFunction('Loptional_params/ETSGLOBAL;', 'foo1'); variable 30 ASSERT_TRUE(foo1(1, "str")); 41 foo1();
|
| /arkcompiler/runtime_core/libabckit/tests/scenarios/api_scanner/static/ |
| D | api_scanner_static.ets | 16 foo1(){} 18 this.foo1(); 28 cls.foo1()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-common-tests/function_compare_test/ |
| D | function_compare.ets | 33 let foo1 = x1.foo 37 assertEQ(foo1, foo2) 38 assertNE(foo1, foo3) 39 assertNE(foo1, baz1)
|
| /arkcompiler/ets_runtime/test/jittest/stack_overflow/ |
| D | stack_overflow.ts | 22 function foo1() {} 23 ArkTools.jitCompileAsync(foo1); 24 ArkTools.waitJitCompileFinish(foo1);
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-common-tests/import_name_conflicts/ |
| D | main.ets | 20 import {foo1, foo1} from './imported_module_1.ets' 25 arktest.assertEQ(foo1(), 0);
|