Lines Matching full:no
25 cookBookTag[2] = '"Symbol()" API is not supported (arkts-no-symbol)';
26 cookBookTag[3] = 'Private "#" identifiers are not supported (arkts-no-private-identifiers)';
28 cookBookTag[5] = 'Use "let" instead of "var" (arkts-no-var)';
31 cookBookTag[8] = 'Use explicit types instead of "any", "unknown" (arkts-no-any-unknown)';
37 cookBookTag[14] = 'Use "class" instead of a type with call signature (arkts-no-call-signatures)';
38 cookBookTag[15] = 'Use "class" instead of a type with constructor signature (arkts-no-ctor-signatur…
39 cookBookTag[16] = 'Only one static block is supported (arkts-no-multiple-static-blocks)';
40 cookBookTag[17] = 'Indexed signatures are not supported (arkts-no-indexed-signatures)';
42 cookBookTag[19] = 'Use inheritance instead of intersection types (arkts-no-intersection-types)';
44 cookBookTag[21] = 'Type notation using "this" is not supported (arkts-no-typing-with-this)';
45 cookBookTag[22] = 'Conditional types are not supported (arkts-no-conditional-types)';
48 cookBookTag[25] = 'Declaring fields in "constructor" is not supported (arkts-no-ctor-prop-decls)';
50 cookBookTag[27] = 'Construct signatures are not supported in interfaces (arkts-no-ctor-signatures-i…
51 cookBookTag[28] = 'Indexed access types are not supported (arkts-no-aliases-by-index)';
52 cookBookTag[29] = 'Indexed access is not supported for fields (arkts-no-props-by-index)';
53 cookBookTag[30] = 'Structural typing is not supported (arkts-no-structural-typing)';
57 cookBookTag[34] = 'Type inference in case of generic function calls is limited (arkts-no-inferred-g…
62 …'Object literal must correspond to some explicitly declared class or interface (arkts-no-untyped-o…
64 cookBookTag[40] = 'Object literals cannot be used as type declarations (arkts-no-obj-literals-as-ty…
67 cookBookTag[43] = 'Array literals must contain elements of only inferrable types (arkts-no-noninfer…
70 cookBookTag[46] = 'Use arrow functions instead of function expressions (arkts-no-func-expressions)';
74 cookBookTag[50] = 'Class literals are not supported (arkts-no-class-literals)';
76 cookBookTag[52] = 'Reassigning object methods is not supported (arkts-no-method-reassignment)';
78 cookBookTag[54] = 'JSX expressions are not supported (arkts-no-jsx)';
79 cookBookTag[55] = 'Unary operators "+", "-" and "~" work only on numbers (arkts-no-polymorphic-unop…
83 cookBookTag[59] = '"delete" operator is not supported (arkts-no-delete)';
84 cookBookTag[60] = '"typeof" operator is allowed only in expression contexts (arkts-no-type-query)';
90 cookBookTag[66] = '"in" operator is not supported (arkts-no-in)';
93 cookBookTag[69] = 'Destructuring assignment is not supported (arkts-no-destruct-assignment)';
95 cookBookTag[71] = 'The comma operator "," is supported only in "for" loops (arkts-no-comma-outside-…
98 cookBookTag[74] = 'Destructuring variable declarations are not supported (arkts-no-destruct-decls)';
103 cookBookTag[79] = 'Type annotation in catch clause is not supported (arkts-no-types-in-catch)';
104 cookBookTag[80] = '"for .. in" is not supported (arkts-no-for-in)';
107 cookBookTag[83] = 'Mapped type expression is not supported (arkts-no-mapped-types)';
108 cookBookTag[84] = '"with" statement is not supported (arkts-no-with)';
114 cookBookTag[90] = 'Function return type inference is limited (arkts-no-implicit-return-types)';
115 cookBookTag[91] = 'Destructuring parameter declarations are not supported (arkts-no-destruct-params…
116 cookBookTag[92] = 'Nested functions are not supported (arkts-no-nested-funcs)';
117 cookBookTag[93] = 'Using "this" inside stand-alone functions is not supported (arkts-no-standalone-…
118 cookBookTag[94] = 'Generator functions are not supported (arkts-no-generators)';
120 cookBookTag[96] = 'Type guarding is supported with "instanceof" and "as" (arkts-no-is)';
124 …arrays or classes derived from arrays into the rest parameter or array literals (arkts-no-spread)';
127 cookBookTag[102] = 'Interface can not extend interfaces with the same method (arkts-no-extend-same-…
128 cookBookTag[103] = 'Declaration merging is not supported (arkts-no-decl-merging)';
131 cookBookTag[106] = 'Constructor function type is not supported (arkts-no-ctor-signatures-funcs)';
137 …an be initialized only with compile time expressions of the same type (arkts-no-enum-mixed-types)';
139 cookBookTag[113] = '"enum" declaration merging is not supported (arkts-no-enum-merging)';
140 cookBookTag[114] = 'Namespaces cannot be used as objects (arkts-no-ns-as-obj)';
143 …d (single semicolons are considered as empty non-declaration statements) (arkts-no-ns-statements)';
148 cookBookTag[121] = '"require" and "import" assignment are not supported (arkts-no-require)';
153 cookBookTag[126] = '"export = ..." assignment is not supported (arkts-no-export-assignment)';
155 cookBookTag[128] = 'Ambient module declaration is not supported (arkts-no-ambient-decls)';
156 cookBookTag[129] = 'Wildcards in module names are not supported (arkts-no-module-wildcards)';
157 cookBookTag[130] = 'Universal module definitions (UMD) are not supported (arkts-no-umd)';
159 cookBookTag[132] = '"new.target" is not supported (arkts-no-new-target)';
161 cookBookTag[134] = 'Definite assignment assertions are not supported (arkts-no-definite-assignment)…
163 cookBookTag[136] = 'Prototype assignment is not supported (arkts-no-prototype-assignment)';
164 cookBookTag[137] = '"globalThis" is not supported (arkts-no-globalthis)';
165 cookBookTag[138] = 'Some of utility types are not supported (arkts-no-utility-types)';
166 cookBookTag[139] = 'Declaring properties on functions is not supported (arkts-no-func-props)';
167 cookBookTag[140] = '\'Function.bind\' is not supported (arkts-no-func-bind)';
169 cookBookTag[142] = '"as const" assertions are not supported (arkts-no-as-const)';
170 cookBookTag[143] = 'Import assertions are not supported (arkts-no-import-assertions)';
174 cookBookTag[147] = 'No dependencies on TypeScript code are currently allowed (arkts-no-ts-deps)';
176 cookBookTag[149] = 'Classes cannot be used as objects (arkts-no-classes-as-obj)';
177 cookBookTag[150] = '"import" statements after other statements are not allowed (arkts-no-misplaced-…
179 cookBookTag[152] = '\'Function.apply\', \'Function.call\' are not supported (arkts-no-func-apply-ca…
195 …'Importing a module for side-effects only is not supported in shared module (arkts-no-side-effects…
197 cookBookTag[164] = '"export * from ..." is not allowed in shared module (arkts-shared-module-no-wil…
199 …nd "Sendable" interfaces are allowed for importing from ets into ts file (arkts-no-ts-import-ets)';
201 …'In ts files, "Sendable" types cannot be used in implements and extends clauses (arkts-no-ts-senda…
203 …'In sdk ts files, "Sendable" class and "Sendable" interface can not be exported (arkts-no-dts-send…
204 cookBookTag[168] = 'In ts files, entities from ets files can not be re-exported (arkts-no-ts-re-exp…
206 …'Namespace import is not allowed for importing from ets to ts file (arkts-no-namespace-import-in-t…
208 …'Side effect import is not allowed for importing from ets to ts file (artkts-no-side-effect-import…
231 cookBookTag[186] = '"new" expression with dynamic constructor type is not supported (arkts-no-dynam…