Searched refs:parentNode (Results 1 – 6 of 6) sorted by relevance
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | controlFlowPropertyDeclarations.ts | 222 let parentTag = node.parentNode && node.parentNode.tagName.toLowerCase(); 224 AssertType(node.parentNode && node.parentNode.tagName.toLowerCase(), "any"); 225 AssertType(node.parentNode, "any"); 226 AssertType(node.parentNode.tagName.toLowerCase(), "any"); 227 AssertType(node.parentNode.tagName.toLowerCase, "any"); 228 AssertType(node.parentNode.tagName, "any"); 229 AssertType(node.parentNode, "any");
|
/arkcompiler/ets_runtime/test/aottest/classstatic/ |
D | classstatic.ts | 294 public parentNode : Node; property in Node 300 this.parentNode = null; 311 el = el.nodeType == 1 ? el.childNode : el.parentNode;
|
/arkcompiler/ets_frontend/ts2panda/src/ |
D | jshelpers.js | 170 function isBlockScope(node, parentNode) { argument 171 return ts.isBlockScope(node, parentNode);
|
D | jshelpers.d.ts | 57 export function isBlockScope(node: ts.Node, parentNode: ts.Node): boolean;
|
/arkcompiler/ets_frontend/es2panda/binder/ |
D | binder.cpp | 971 auto *parentNode = const_cast<panda::es2panda::ir::AstNode *>(ident->Parent()); in ReplaceConstReferenceWithInitialization() local 973 parentNode->UpdateSelf([=](auto *childNode) { in ReplaceConstReferenceWithInitialization()
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
D | cocos_worker_test.js | 6082 this.parentNode = window.__canvas; 7039 this.currentElement = s.parentNode; 7321 parentNode: null, property 7371 e = e.nodeType == a ? e.ownerDocument : e.parentNode; 7380 e = e.nodeType == a ? e.ownerDocument : e.parentNode; 7428 var s = e.parentNode; 7441 n.parentNode = t; 7596 var i = e.parentNode; 7603 e.parentNode = t; 7703 this.parentNode && this.parentNode.insertBefore(s, this.nextSibling); [all …]
|