Home
last modified time | relevance | path

Searched full:keyword (Results 1 – 25 of 286) sorted by relevance

12345678910>>...12

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
Dkeywords.def17 #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/
Dkeywords.yaml16 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 …]
Dkeywords.rb66 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/
Dparser-js-allowed.txt6 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/
Dclass_initializer_with_this.sts17 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…
Dclass_initializer_with_super.sts17 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…
Dclass_initializer_with_type_variable.sts18 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/
Dstatic_method_body_with_super.sts17 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.
Dstatic_method_body_with_this.sts17 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.
Dstatic_method_declaration_with_keywords.sts19 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/
Dfinal_declaration_with_modifiers_positive.sts19 desc: Final method declaraion with '{{mod}}' keyword.
20 …-time error occurs if a method declaration contains keyword abstract or static along with the keyw…
Dfinal_declaration_with_modifiers_negative.sts19 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/
Dstatic_field_initialization_with_super.sts17 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…
Dstatic_field_initialization_with_this.sts17 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…
Dfield_initialization_with_super.sts17 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.
Dfield_initialization_with_this.sts17 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/
Dfield_initializer_with_this.sts18 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/
Dabstract_method_declaration_with_keywords.sts19 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/
Dnative_method_declaration_with_keywords.sts19 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/
Dfunction_without_keyword.sts17 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/
Daccess_by_super.sts17 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/
Dsuper_in_object.sts17 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/
Dconstructor_without_keyword.sts17 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/
Daccess_to_hiden_field_by_expression.sts17 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/
Doverride_method_declaration_with_keywords.sts19 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