| /arkcompiler/ets_frontend/ets2panda/test/runtime/ets/ |
| D | BigInt5.sts | 29 let a = 123n; 30 assert(a == 123n); 31 assert(a.toString() == "123"); 33 a = -123n; 34 assert(a == -123n); 35 assert(a.toString() == "-123"); 37 a = 123n 38 assert(a == 123n); 39 assert(a.toString() == "123"); 42 assert(a == -123n); [all …]
|
| D | UnionTypeCheckCast.sts | 38 assert foo1("123") == "123" 40 assert foo2("123") == "123" 42 assert foo3("123") == "123"
|
| /arkcompiler/ets_frontend/arkguard/test/ut/utils/oh_modules/ |
| D | exportFile.js | 17 ohIndirectProp1: 123 21 ohShorthandProp: 123 26 ohPropertyAssignment1: 123, 27 'ohPropertyAssignment2': 123, 28 ['ohPropertyAssignment3']: 123, 50 ohIndirectProp2 = 123; 54 ohIndirectProp3 = 123; 57 ohIndirectProp4 = 123; 63 ohIndirectProp5 = 123; 67 ohIndirectProp6 = 123; [all …]
|
| D | exportFile1.ts | 17 export let nsProp1 = "123"; 22 classProp1 = "123"; 24 innerProp: 123 29 prop4 = 123; 31 innerProp1: "123" 36 prop1 = "123"; 38 innerProp2: 123
|
| /arkcompiler/ets_frontend/arkguard/test/ut/utils/module_exports_test/ |
| D | exportFile1.js | 17 indirectProp1: 123 21 projectShorthandProp: 123 26 projectPropertyAssignment1: 123, 27 'projectPropertyAssignment2': 123, 28 ['projectPropertyAssignment3']: 123, 50 indirectProp2 = 123; 54 indirectProp3 = 123; 57 indirectProp4 = 123; 63 indirectProp5 = 123; 67 indirectProp6 = 123; [all …]
|
| /arkcompiler/runtime_core/libpandabase/tests/ |
| D | string_helpers_test.cpp | 50 ASSERT_FALSE(ParseInt("123x", &i)); in TEST() 53 ASSERT_TRUE(ParseInt("123", &i)); in TEST() 54 ASSERT_EQ(123, i); in TEST() 57 EXPECT_TRUE(ParseInt(" 123", &i)); in TEST() 58 EXPECT_EQ(123, i); in TEST() 59 ASSERT_TRUE(ParseInt("-123", &i)); in TEST() 60 ASSERT_EQ(-123, i); in TEST() 62 EXPECT_TRUE(ParseInt(" -123", &i)); in TEST() 63 EXPECT_EQ(-123, i); in TEST() 88 ASSERT_FALSE(ParseInt<int>("123x", nullptr)); in TEST() [all …]
|
| /arkcompiler/runtime_core/static_core/libpandabase/tests/ |
| D | string_helpers_test.cpp | 54 ASSERT_FALSE(ParseInt("123x", &i)); in TEST() 57 ASSERT_TRUE(ParseInt("123", &i)); in TEST() 58 ASSERT_EQ(123U, i); in TEST() 61 EXPECT_TRUE(ParseInt(" 123", &i)); in TEST() 62 EXPECT_EQ(123U, i); in TEST() 63 ASSERT_TRUE(ParseInt("-123", &i)); in TEST() 64 ASSERT_EQ(-123L, i); in TEST() 66 EXPECT_TRUE(ParseInt(" -123", &i)); in TEST() 67 EXPECT_EQ(-123L, i); in TEST() 92 ASSERT_FALSE(ParseInt<int>("123x", nullptr)); in TEST() [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/escompat/ |
| D | compat_stringify.js | 25 z = 123; 28 x = '123'; 34 throw 123; 53 ASSERT_EQ(jsv, '{"x":"123","y":{"z":123}}'); 54 ASSERT_EQ(obj, '{"x":"123","y":{"z":123}}'); 56 ASSERT_EQ(jsvsield, '{"x":{"x":"123","y":{"z":123}}}'); 62 ASSERT_EQ(e, 123);
|
| /arkcompiler/ets_runtime/test/sharedtest/definesendableclass/ |
| D | expect_output.txt | 20 Parent.123 = 123 31 Parent.123 = 123 46 Parent.123 = 123 60 Parent.123 = 123 74 123
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/dynamic_object/ |
| D | index.js | 16 return 123; 19 exports.Lambda = () => 123; 24 return 123; 29 exports.MultipleCall = () => () => 123; 33 return 123; 41 return 123; 46 exports.ArrayOfLambda = [() => 123];
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/implement_interfaces/ |
| D | implement_interfaces.sts | 20 const testObj = new TestClass('OneTestClass',123); 21 return testObj.name == 'OneTestClass' && testObj.id as number == 123; 25 const testObj = new TestClass('OneTestClass',123); 30 const testObj = new TestClass('OneTestClass',123); 31 return testObj.myId() as number == 123 35 const testObj = new TestClass('OneTestClass',123); 37 return objId as number == 123
|
| /arkcompiler/ets_frontend/es2panda/test/compiler/js/language/expressions/assignment/ |
| D | test-logic-assigment-expression-with-assignment-done-expected.txt | 1 123 2 123 3 123 4 123
|
| /arkcompiler/ets_frontend/arkguard/test/ut/utils/keep_export/ |
| D | exportFile1.ts | 17 prop1: string = "123"; 18 prop2: number = 123; 20 innerProp2: "123" 44 prop4 = 123; 46 innerProp: "123" 51 exportProp1 = "123";
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/benchmarks/get_value/get_numeric_value/bu_j2a/ |
| D | test_import.js | 16 exports.jsNumber = 123; 17 exports.jsByte = 123; 18 exports.jsShort = 123; 19 exports.jsInt = 123; 20 exports.jsLong = 123;
|
| /arkcompiler/ets_frontend/es2panda/test/compiler/ts/cases/conformance/classes/ |
| D | test-ts-class-auto-accessor-5.ts | 18 accessor 123 = "123"; 22 print(t[123]); 23 t[123] = "456"; 24 print(t[123]);
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/benchmarks/get_value/get_numeric_value/bu_j2j/ |
| D | test_import.js | 16 exports.jsNumber = 123; 17 exports.jsByte = 123; 18 exports.jsShort = 123; 19 exports.jsInt = 123; 20 exports.jsLong = 123;
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/benchmarks/get_value/get_numeric_value/bu_a2a/ |
| D | test_import.sts | 16 export const stsNumber: number = 123; 17 export const stsByte: byte = 123; 18 export const stsShort: short = 123; 19 export const stsInt: int = 123; 20 export const stsLong: long = 123;
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/ |
| D | typeinference_function_generic.sts | 17 fn1("123", "456") 20 fn2("123", "456") 23 fn3("123", "456") 26 fn4("123", "456") 33 fn6("123","456","321") 36 fn7("123","456")
|
| /arkcompiler/runtime_core/static_core/tests/cts-generator/cts-template/ |
| D | call.virt.negative.yaml | 445 movi v1, 123 451 movi v1, 123 457 movi v1, 123 469 movi v1, 123 480 movi v1, 123 545 movi v2, 123 550 movi v1, 123 558 movi v1, 123 566 movi v1, 123 576 movi v2, 123 [all …]
|
| D | call.virt.range.negative.yaml | 436 movi v1, 123 442 movi v1, 123 448 movi v1, 123 460 movi v1, 123 471 movi v1, 123 536 movi v2, 123 541 movi v1, 123 549 movi v1, 123 557 movi v1, 123 567 movi v2, 123 [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/02.lexical_elements/09.literals/02.floating_point_literals/ |
| D | incorrect_float_literals.params.yaml | 37 - '1__23.123e12' 38 - '_123.123e12' 40 - '123._123e12' 41 - '123_.123e12'
|
| /arkcompiler/ets_frontend/es2panda/test/compiler/js/regex/ |
| D | mixed_multiple_assertions_escaped_symbol_emotion_quantifier_replace-expected.txt | 1 "\n123\n ๑ŏ﹏ŏ๑ \t ノ◕ω◕ノ <(▰˘◡˘▰) 123\nabc@123\nabc\n ٩(๑❛ᴗ❛๑)۶ \t ノ◕ω◕ノ \u000b ღゝ◡╹ノ♡ 12…
|
| D | mixed_multiple_assertions_escaped_symbol_emotion_quantifier_split-expected.txt | 1 ["\n123\n ๑ŏ﹏ŏ๑ \t ノ◕ω◕ノ <(▰˘◡˘▰) 123\nabc","ღゝ◡╹ノ♡ ","123\nabc\n ٩(๑❛ᴗ❛๑)۶ \t ノ◕ω◕ノ \u000…
|
| /arkcompiler/ets_runtime/test/moduletest/string/ |
| D | expect_output.txt | 41 123_352_42342_483297538927943872943_12i2 43 123_352_42342_483297538927943872943_12i2 44 123,352,42342,483297538927943872943,12i2 45 123,352 52 123,wode2222222222222222,fast,哈哈哈 53 123,wode2222222222222222,fast,hhh 103 123
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/15.semantic_rules/06.type_inference/01.smart_types/ |
| D | un4.params.yaml | 18 res = v[0].int2str(123) + 4 == '1234' 29 return p[0].int2str(123) 34 res = foo(v) == '123' 48 res = a.fld[0].int2str(123) == '123' 54 return p[0].int2str(123) 61 res = a.meth(v) == '123'
|