Searched refs:TSTypeAssertion (Results 1 – 11 of 11) sorted by relevance
/arkcompiler/ets_frontend/es2panda/ir/ts/ |
D | tsTypeAssertion.cpp | 22 void TSTypeAssertion::Iterate(const NodeTraverser &cb) const in Iterate() 28 void TSTypeAssertion::Dump(ir::AstDumper *dumper) const in Dump() 33 void TSTypeAssertion::Compile(compiler::PandaGen *pg) const in Compile() 38 checker::Type *TSTypeAssertion::Check([[maybe_unused]] checker::Checker *checker) const in Check() 43 void TSTypeAssertion::UpdateSelf(const NodeUpdater &cb, [[maybe_unused]] binder::Binder *binder) in UpdateSelf()
|
D | tsTypeAssertion.h | 32 class TSTypeAssertion : public Expression { 34 explicit TSTypeAssertion(Expression *typeAnnotation, Expression *expression) in TSTypeAssertion() function
|
/arkcompiler/ets_frontend/es2panda/test/parser/ts/ |
D | test-unary-expression-followedby-type-assertion-expected.txt | 36 "type": "TSTypeAssertion", 102 "type": "TSTypeAssertion", 117 "type": "TSTypeAssertion", 229 "type": "TSTypeAssertion",
|
D | test-ts-type-assertion-expected.txt | 123 "type": "TSTypeAssertion", 206 "type": "TSTypeAssertion",
|
D | test-type-assertion-followedby-another-expr-expected.txt | 84 "type": "TSTypeAssertion", 227 "type": "TSTypeAssertion",
|
D | test-arrow-function2-expected.txt | 216 "type": "TSTypeAssertion",
|
D | test-function-with-type-assertion-expected.txt | 575 "type": "TSTypeAssertion", 787 "type": "TSTypeAssertion",
|
D | test-as-expression3-expected.txt | 473 "type": "TSTypeAssertion",
|
/arkcompiler/ets_frontend/es2panda/ir/ |
D | astNodeMapping.h | 133 _(TS_TYPE_ASSERTION, TSTypeAssertion) \
|
/arkcompiler/ets_frontend/es2panda/parser/ |
D | parserImpl.h | 104 class TSTypeAssertion; variable 364 …ir::TSTypeAssertion *ParseTsTypeAssertion(ExpressionParseFlags flags = ExpressionParseFlags::NO_OP…
|
D | expressionParser.cpp | 523 ir::TSTypeAssertion *ParserImpl::ParseTsTypeAssertion(ExpressionParseFlags flags) in ParseTsTypeAssertion() 539 auto *typeAssertion = AllocNode<ir::TSTypeAssertion>(typeAnnotation, expression); in ParseTsTypeAssertion()
|