Searched full:keyword (Results 1 – 25 of 286) sorted by relevance
12345678910>>...12
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/ |
| D | keywords.def | 17 #define OPCODE(X, Y, Z, S) KEYWORD(X) 22 #define PRIMTYPE(P) KEYWORD(P) 27 #define DEF_MIR_INTRINSIC(X, NAME, INTRN_CLASS, RETURN_TYPE, ...) KEYWORD(X) 30 KEYWORD(else) 32 KEYWORD(var) 33 KEYWORD(tempvar) 34 KEYWORD(reg) 35 KEYWORD(type) 36 KEYWORD(func) 37 KEYWORD(struct) [all …]
|
| /arkcompiler/ets_frontend/ets2panda/lexer/scripts/ |
| D | keywords.yaml | 16 description: JavaScript keyword 18 description: TypeScript keyword 20 description: AssemblyScript keyword 22 description: ETS keyword 27 keyword: [ets] 44 keyword: [ets] 49 keyword: [ets] 57 keyword: [as, ets] 62 keyword: [ets] 75 keyword: [js, ts, as, ets] [all …]
|
| D | keywords.rb | 66 s_kw = Set.new(desc&.keyword) 68 groups.combination(2).each { |a,b| raise "Conflicting keyword type" unless (a & b).empty? } 78 desc&.keyword&.include? extension.name or desc&.custom_handler&.include? extension.name
|
| /arkcompiler/ets_frontend/ets2panda/test/test-lists/parser/ |
| D | parser-js-allowed.txt | 6 compiler/ets/from-soft-keyword-0.sts 45 compiler/ets/from-soft-keyword-3.sts 48 compiler/ets/from-soft-keyword-2.sts 56 compiler/ets/from-soft-keyword-1.sts 80 compiler/ets/catch-soft-keyword.sts 217 compiler/ets/delete-non-keyword.sts 314 parser/ts/test-keyword-declare5.ts 318 parser/ts/test-keyword-declare6.ts 336 parser/ts/test-keyword-declare.ts 356 parser/ts/test-keyword-declare7.ts [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/08.class_initializer/ |
| D | class_initializer_with_this.sts | 17 desc: Class initializer with this keyword. 18 assert: It is a compile-time error if the keyword this or the keyword super or any type variable de…
|
| D | class_initializer_with_super.sts | 17 desc: Class initializer with super keyword. 18 assert: It is a compile-time error if the keyword this or the keyword super or any type variable de…
|
| D | class_initializer_with_type_variable.sts | 18 assert: It is a compile-time error if the keyword this or the keyword super or any type variable de…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/06.method_declarations/01.static_methods/ |
| D | static_method_body_with_super.sts | 17 desc: Static method with keyword 'super'. 18 …is a compile-time error to refer to the current object using the keyword this or the keyword super.
|
| D | static_method_body_with_this.sts | 17 desc: Static method with keyword 'this'. 18 …is a compile-time error to refer to the current object using the keyword this or the keyword super.
|
| D | static_method_declaration_with_keywords.sts | 19 desc: Static method declaraion with '{{mod}}' keyword. 20 assert: It is compile-time error if a method declaration that contains the keyword static also cont…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/06.method_declarations/04.final_methods/ |
| D | final_declaration_with_modifiers_positive.sts | 19 desc: Final method declaraion with '{{mod}}' keyword. 20 …-time error occurs if a method declaration contains keyword abstract or static along with the keyw…
|
| D | final_declaration_with_modifiers_negative.sts | 19 desc: Final method declaraion with '{{mod}}' keyword. 20 …-time error occurs if a method declaration contains keyword abstract or static along with the keyw…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/05.field_declarations/03.field_initialization/ |
| D | static_field_initialization_with_super.sts | 17 desc: Static field initialization with keyword 'super'. 18 …ules apply to the initializer. It is a compile-time error if the keyword this or keyword super occ…
|
| D | static_field_initialization_with_this.sts | 17 desc: Static field initialization with keyword 'this'. 18 …ules apply to the initializer. It is a compile-time error if the keyword this or keyword super occ…
|
| D | field_initialization_with_super.sts | 17 desc: Non-static field initialization with keyword 'super'. 18 …lizer. The initializer may refer to the current object using the keyword this or the keyword super.
|
| D | field_initialization_with_this.sts | 17 desc: Non-static field initialization with keyword 'this'. 18 …lizer. The initializer may refer to the current object using the keyword this or the keyword super.
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/10.interfaces/04.interface_members/ |
| D | field_initializer_with_this.sts | 18 assert: It is a compile-time error if the keyword this or the keyword super occurs in the initializ…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/06.method_declarations/03.abstract_methods/ |
| D | abstract_method_declaration_with_keywords.sts | 19 desc: Abstract method declaraion with '{{mod}}' keyword. 20 assert: It is compile-time error if a method declaration that contains the keyword abstract also co…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/06.method_declarations/07.native_methods/ |
| D | native_method_declaration_with_keywords.sts | 19 desc: Native method declaraion with '{{mod}}' keyword. 20 assert: It is compile-time error if a method declaration that contains the keyword native also cont…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/15.exceptions/01.throwing_functions/ |
| D | function_without_keyword.sts | 17 desc: Declaring throwing function without 'throws' keyword. 18 …ction, method, constructor or lambda) can throw an error, use the throws keyword at the end of the…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/09.field_access_expressions/ |
| D | access_by_super.sts | 17 desc: Access to field by keyword super. 18 …of an object which is referenced by the value of either an expression or the special keyword super.
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/09.field_access_expressions/02.accessing_superclass_fields/ |
| D | super_in_object.sts | 17 desc: Access to field by keyword super from constructor of Object class 18 assert: It is a compile-time error if the forms using the keyword super appear in the declaration o…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/15.exceptions/02.non_throwing_functions/ |
| D | constructor_without_keyword.sts | 17 desc: Declaring throwing constructor without 'throws' keyword. 18 …ction, method, constructor or lambda) can throw an error, use the throws keyword at the end of the…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/05.field_declarations/ |
| D | access_to_hiden_field_by_expression.sts | 17 desc: Access to a hiden field by access expression with 'super' keyword. 18 …if it is static, or by using a field access expression that contains the keyword super or a cast t…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/06.method_declarations/06.overriding_methods/ |
| D | override_method_declaration_with_keywords.sts | 19 desc: Override method declaration with keyword {{mod}}. 20 assert: It is compile-time error if a method declaration that contains the keyword override also co…
|
12345678910>>...12