Searched refs:initFlowNode (Results 1 – 3 of 3) sorted by relevance
| /third_party/typescript/src/compiler/ |
| D | binder.ts | 169 function initFlowNode<T extends FlowNode>(node: T) { function 668 currentFlow = initFlowNode({ flags: FlowFlags.Start }); 964 return initFlowNode({ flags: FlowFlags.BranchLabel, antecedents: undefined }); 968 return initFlowNode({ flags: FlowFlags.LoopLabel, antecedents: undefined }); 972 return initFlowNode({ flags: FlowFlags.ReduceLabel, target, antecedents, antecedent }); 1003 return initFlowNode({ flags, antecedent, node: expression }); 1008 …return initFlowNode({ flags: FlowFlags.SwitchClause, antecedent, switchStatement, clauseStart, cla… 1013 const result = initFlowNode({ flags, antecedent, node }); 1022 return initFlowNode({ flags: FlowFlags.Call, antecedent, node }); 2120 currentFlow = initFlowNode({ flags: FlowFlags.Start });
|
| /third_party/typescript/lib/ |
| D | typingsInstaller.js | 47207 function initFlowNode(node) { function 47664 currentFlow = initFlowNode({ flags: 2 /* FlowFlags.Start */ }); 47948 return initFlowNode({ flags: 4 /* FlowFlags.BranchLabel */, antecedents: undefined }); 47951 return initFlowNode({ flags: 8 /* FlowFlags.LoopLabel */, antecedents: undefined }); 47954 …return initFlowNode({ flags: 1024 /* FlowFlags.ReduceLabel */, target: target, antecedents: antece… 47982 return initFlowNode({ flags: flags, antecedent: antecedent, node: expression }); 47986 …return initFlowNode({ flags: 128 /* FlowFlags.SwitchClause */, antecedent: antecedent, switchState… 47990 var result = initFlowNode({ flags: flags, antecedent: antecedent, node: node }); 47998 … return initFlowNode({ flags: 512 /* FlowFlags.Call */, antecedent: antecedent, node: node }); 49001 currentFlow = initFlowNode({ flags: 2 /* FlowFlags.Start */ });
|
| D | tsc.js | 38859 function initFlowNode(node) { function 39201 currentFlow = initFlowNode({ flags: 2 }); 39474 return initFlowNode({ flags: 4, antecedents: undefined }); 39477 return initFlowNode({ flags: 8, antecedents: undefined }); 39480 …return initFlowNode({ flags: 1024, target: target, antecedents: antecedents, antecedent: anteceden… 39507 return initFlowNode({ flags: flags, antecedent: antecedent, node: expression }); 39511 …return initFlowNode({ flags: 128, antecedent: antecedent, switchStatement: switchStatement, clause… 39515 var result = initFlowNode({ flags: flags, antecedent: antecedent, node: node }); 39523 return initFlowNode({ flags: 512, antecedent: antecedent, node: node }); 40419 currentFlow = initFlowNode({ flags: 2 });
|