/plugin/asciidocjs/node_modules/@types/babel-types/ |
D | index.d.ts | 2007 export function isArrayExpression(node: object | null | undefined, opts?: object): node is ArrayExp… 2008 export function isAssignmentExpression(node: object | null | undefined, opts?: object): node is Ass… 2009 export function isBinaryExpression(node: object | null | undefined, opts?: object): node is BinaryE… 2010 export function isDirective(node: object | null | undefined, opts?: object): node is Directive; 2011 export function isDirectiveLiteral(node: object | null | undefined, opts?: object): node is Directi… 2012 export function isBlockStatement(node: object | null | undefined, opts?: object): node is BlockStat… 2013 export function isBreakStatement(node: object | null | undefined, opts?: object): node is BreakStat… 2014 export function isCallExpression(node: object | null | undefined, opts?: object): node is CallExpre… 2015 export function isCatchClause(node: object | null | undefined, opts?: object): node is CatchClause; 2016 export function isConditionalExpression(node: object | null | undefined, opts?: object): node is Co… [all …]
|
/plugin/asciidocjs/node_modules/with/node_modules/acorn/dist/ |
D | walk.js | 25 function simple(node, visitors, base, state, override) { argument 27 ;(function c(node, st, override) { argument 28 var type = override || node.type, found = visitors[type] 29 base[type](node, st, c) 30 if (found) found(node, st) 31 })(node, state, override) 37 function ancestor(node, visitors, base, state) { argument 40 ;(function c(node, st, override) { argument 41 var type = override || node.type, found = visitors[type] 42 var isNew = node != ancestors[ancestors.length - 1] [all …]
|
D | walk.es.js | 19 function simple(node, visitors, base, state, override) { argument 21 ;(function c(node, st, override) { argument 22 var type = override || node.type, found = visitors[type] 23 base[type](node, st, c) 24 if (found) found(node, st) 25 })(node, state, override) 31 function ancestor(node, visitors, base, state) { argument 34 ;(function c(node, st, override) { argument 35 var type = override || node.type, found = visitors[type] 36 var isNew = node != ancestors[ancestors.length - 1] [all …]
|
/plugin/asciidocjs/node_modules/acorn/dist/ |
D | walk.es.js | 19 function simple(node, visitors, base, state, override) { argument 21 ;(function c(node, st, override) { argument 22 var type = override || node.type, found = visitors[type] 23 base[type](node, st, c) 24 if (found) found(node, st) 25 })(node, state, override) 31 function ancestor(node, visitors, base, state) { argument 34 ;(function c(node, st, override) { argument 35 var type = override || node.type, found = visitors[type] 36 var isNew = node != ancestors[ancestors.length - 1] [all …]
|
D | walk.js | 25 function simple(node, visitors, base, state, override) { argument 27 ;(function c(node, st, override) { argument 28 var type = override || node.type, found = visitors[type] 29 base[type](node, st, c) 30 if (found) found(node, st) 31 })(node, state, override) 37 function ancestor(node, visitors, base, state) { argument 40 ;(function c(node, st, override) { argument 41 var type = override || node.type, found = visitors[type] 42 var isNew = node != ancestors[ancestors.length - 1] [all …]
|
/plugin/asciidocjs/node_modules/acorn/src/walk/ |
D | index.js | 19 export function simple(node, visitors, base, state, override) { argument 21 ;(function c(node, st, override) { argument 22 let type = override || node.type, found = visitors[type] 23 base[type](node, st, c) 24 if (found) found(node, st) 25 })(node, state, override) 31 export function ancestor(node, visitors, base, state) { argument 34 ;(function c(node, st, override) { argument 35 let type = override || node.type, found = visitors[type] 36 let isNew = node != ancestors[ancestors.length - 1] [all …]
|
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/walk/ |
D | index.js | 19 export function simple(node, visitors, base, state, override) { argument 21 ;(function c(node, st, override) { argument 22 let type = override || node.type, found = visitors[type] 23 base[type](node, st, c) 24 if (found) found(node, st) 25 })(node, state, override) 31 export function ancestor(node, visitors, base, state) { argument 34 ;(function c(node, st, override) { argument 35 let type = override || node.type, found = visitors[type] 36 let isNew = node != ancestors[ancestors.length - 1] [all …]
|
/plugin/asciidocjs/node_modules/acorn-globals/ |
D | index.js | 6 function isScope(node) { argument 7 …return node.type === 'FunctionExpression' || node.type === 'FunctionDeclaration' || node.type === … 9 function isBlockScope(node) { argument 10 return node.type === 'BlockStatement' || isScope(node); 13 function declaresArguments(node) { argument 14 return node.type === 'FunctionExpression' || node.type === 'FunctionDeclaration'; 17 function declaresThis(node) { argument 18 return node.type === 'FunctionExpression' || node.type === 'FunctionDeclaration'; 43 var declareFunction = function (node) { argument 44 var fn = node; [all …]
|
/plugin/asciidocjs/node_modules/uglify-js/lib/ |
D | propmangle.js | 126 ast.walk(new TreeWalker(function(node) { argument 127 if (node instanceof AST_ClassProperty 128 || node instanceof AST_DestructuredKeyVal 129 || node instanceof AST_ObjectProperty) { 130 if (node.key instanceof AST_Node) { 131 addStrings(node.key, add); 132 } else if (node.start && node.start.quote) { 133 add(node.key); 135 } else if (node instanceof AST_Dot) { 136 if (node.quoted) add(node.property); [all …]
|
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/ |
D | statement.js | 16 pp.parseTopLevel = function(node) { argument 18 if (!node.body) node.body = [] 21 node.body.push(stmt) 29 node.sourceType = this.options.sourceType 31 return this.finishNode(node, "Program") 58 let starttype = this.type, node = this.startNode(), kind 70 …case tt._break: case tt._continue: return this.parseBreakContinueStatement(node, starttype.keyword) 71 case tt._debugger: return this.parseDebuggerStatement(node) 72 case tt._do: return this.parseDoStatement(node) 73 case tt._for: return this.parseForStatement(node) [all …]
|
/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/ |
D | scope.js | 104 var tw = new TreeWalker(function(node, descend){ argument 105 if (node instanceof AST_Catch) { 107 scope = new AST_Scope(node); 113 if (node instanceof AST_Scope) { 114 node.init_scope_vars(scope); 118 defun = scope = node; 126 if (node instanceof AST_LabeledStatement) { 127 var l = node.label; 136 if (node instanceof AST_With) { 141 if (node instanceof AST_Symbol) { [all …]
|
D | propmangle.js | 110 ast.walk(new TreeWalker(function(node){ argument 111 if (node instanceof AST_ObjectKeyVal) { 112 add(node.key, ignore_quoted && node.quote); 114 else if (node instanceof AST_ObjectProperty) { 116 add(node.key.name); 118 else if (node instanceof AST_Dot) { 119 add(node.property); 121 else if (node instanceof AST_Sub) { 122 addStrings(node.property, ignore_quoted); 127 return ast.transform(new TreeTransformer(function(node){ argument [all …]
|
/plugin/asciidocjs/node_modules/pug-linker/ |
D | index.js | 26 ast.nodes.forEach(function addNode(node) { argument 27 if (node.type === 'NamedBlock') { 28 expectedBlocks.push(node); 29 } else if (node.type === 'Block') { 30 node.nodes.forEach(addNode); 31 } else if (node.type === 'Mixin' && node.call === false) { 32 mixins.push(node); 34 …_ROOT', 'Only named blocks and mixins can appear at the top level of an extending template', node); 40 walk(parent, function (node) { argument 41 if (node.type === 'NamedBlock') { [all …]
|
/plugin/grensladawritezor/fckeditor/editor/_source/internals/ |
D | fckxhtml_ie.js | 30 FCKXHtml._AppendAttributes = function( xmlNode, htmlNode, node, nodeName ) argument 70 this._AppendAttribute( node, sAttName, sAttValue || oAttribute.nodeValue ) ; 75 FCKXHtml.TagProcessors['meta'] = function( node, htmlNode ) argument 77 var oHttpEquiv = node.attributes.getNamedItem( 'http-equiv' ) ; 87 FCKXHtml._AppendAttribute( node, 'http-equiv', sHttpEquiv ) ; 91 return node ; 95 FCKXHtml.TagProcessors['font'] = function( node, htmlNode ) 97 if ( node.attributes.length == 0 ) 98 node = FCKXHtml.XML.createDocumentFragment() ; 100 node = FCKXHtml._AppendChildNodes( node, htmlNode ) ; [all …]
|
/plugin/findologicxmlexport/vendor/hoa/compiler/Test/Unit/Llk/ |
D | TreeNode.php | 56 ->when($node = new SUT('foo')) 58 ->object($node) 66 ->when($node = new SUT($id)) 68 ->string($node->getId()) 70 ->variable($node->getValue()) 72 ->integer($node->getChildrenNumber()) 74 ->array($node->getChildren()) 76 ->variable($node->getParent()) 87 ->when($node = new SUT($id, $value)) 89 ->string($node->getId()) [all …]
|
/plugin/findologicxmlexport/vendor/twig/twig/src/NodeVisitor/ |
D | OptimizerNodeVisitor.php | 70 protected function doEnterNode(Node $node, Environment $env) argument 73 $this->enterOptimizeFor($node, $env); 78 if (!$node instanceof AbstractExpression) { 79 if ('Twig_Node' !== \get_class($node)) { 83 $node = $this->optimizeVariables($node, $env); 85 } elseif ($node instanceof BodyNode) { 90 return $node; 93 protected function doLeaveNode(Node $node, Environment $env) argument 95 $expression = $node instanceof AbstractExpression; 98 $this->leaveOptimizeFor($node, $env); [all …]
|
D | SandboxNodeVisitor.php | 42 protected function doEnterNode(Node $node, Environment $env) argument 44 if ($node instanceof ModuleNode) { 50 return $node; 53 if ($node->getNodeTag() && !isset($this->tags[$node->getNodeTag()])) { 54 $this->tags[$node->getNodeTag()] = $node; 58 …if ($node instanceof FilterExpression && !isset($this->filters[$node->getNode('filter')->getAttrib… 59 $this->filters[$node->getNode('filter')->getAttribute('value')] = $node; 63 …if ($node instanceof FunctionExpression && !isset($this->functions[$node->getAttribute('name')])) { 64 $this->functions[$node->getAttribute('name')] = $node; 68 if ($node instanceof RangeBinary && !isset($this->functions['range'])) { [all …]
|
D | SafeAnalysisNodeVisitor.php | 39 public function getSafe(\Twig_NodeInterface $node) argument 41 $hash = spl_object_hash($node); 47 if ($bucket['key'] !== $node) { 59 protected function setSafe(\Twig_NodeInterface $node, array $safe) argument 61 $hash = spl_object_hash($node); 64 if ($bucket['key'] === $node) { 72 'key' => $node, 77 protected function doEnterNode(Node $node, Environment $env) argument 79 return $node; 82 protected function doLeaveNode(Node $node, Environment $env) argument [all …]
|
/plugin/asciidocjs/node_modules/acorn/src/loose/ |
D | expression.js | 27 let node = this.startNodeAt(start) 28 node.expressions = [expr] 29 while (this.eat(tt.comma)) node.expressions.push(this.parseMaybeAssign(noIn)) 30 return this.finishNode(node, "SequenceExpression") 46 let node = this.startNode() 49 node.delegate = false 50 node.argument = null 52 node.delegate = this.eat(tt.star) 53 node.argument = this.parseMaybeAssign() 55 return this.finishNode(node, "YieldExpression") [all …]
|
/plugin/asciidocjs/node_modules/acorn/src/ |
D | statement.js | 16 pp.parseTopLevel = function(node) { argument 18 if (!node.body) node.body = [] 21 node.body.push(stmt) 25 node.sourceType = this.options.sourceType 27 return this.finishNode(node, "Program") 69 let starttype = this.type, node = this.startNode(), kind 81 …case tt._break: case tt._continue: return this.parseBreakContinueStatement(node, starttype.keyword) 82 case tt._debugger: return this.parseDebuggerStatement(node) 83 case tt._do: return this.parseDoStatement(node) 84 case tt._for: return this.parseForStatement(node) [all …]
|
/plugin/wysiwyg/fckeditor/editor/_source/internals/ |
D | fckxhtml_ie.js | 30 FCKXHtml._AppendAttributes = function( xmlNode, htmlNode, node, nodeName ) argument 80 this._AppendAttribute( node, sAttName, sAttValue || oAttribute.nodeValue ) ; 85 FCKXHtml.TagProcessors['meta'] = function( node, htmlNode ) argument 87 var oHttpEquiv = node.attributes.getNamedItem( 'http-equiv' ) ; 97 FCKXHtml._AppendAttribute( node, 'http-equiv', sHttpEquiv ) ; 101 return node ; 105 FCKXHtml.TagProcessors['font'] = function( node, htmlNode ) 107 if ( node.attributes.length == 0 ) 108 node = FCKXHtml.XML.createDocumentFragment() ; 110 node = FCKXHtml._AppendChildNodes( node, htmlNode ) ; [all …]
|
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/loose/ |
D | expression.js | 27 let node = this.startNodeAt(start) 28 node.expressions = [expr] 29 while (this.eat(tt.comma)) node.expressions.push(this.parseMaybeAssign(noIn)) 30 return this.finishNode(node, "SequenceExpression") 46 let node = this.startNode() 49 node.delegate = false 50 node.argument = null 52 node.delegate = this.eat(tt.star) 53 node.argument = this.parseMaybeAssign() 55 return this.finishNode(node, "YieldExpression") [all …]
|
D | statement.js | 8 let node = this.startNodeAt(this.options.locations ? [0, getLineInfo(this.input, 0)] : 0) 9 node.body = [] 10 while (this.tok.type !== tt.eof) node.body.push(this.parseStatement()) 13 node.sourceType = this.options.sourceType 15 return this.finishNode(node, "Program") 19 let starttype = this.tok.type, node = this.startNode(), kind 31 node.label = null 33 node.label = this.tok.type === tt.name ? this.parseIdent() : null 36 return this.finishNode(node, isBreak ? "BreakStatement" : "ContinueStatement") 41 return this.finishNode(node, "DebuggerStatement") [all …]
|
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ |
D | ThrowablePatch.php | 13 * @param ClassNode $node 16 public function supports(ClassNode $node) argument 18 … return $this->implementsAThrowableInterface($node) && $this->doesNotExtendAThrowableClass($node); 22 * @param ClassNode $node 25 private function implementsAThrowableInterface(ClassNode $node) argument 27 foreach ($node->getInterfaces() as $type) { 37 * @param ClassNode $node 40 private function doesNotExtendAThrowableClass(ClassNode $node) argument 42 return !is_a($node->getParentClass(), 'Throwable', true); 48 * @param ClassNode $node [all …]
|
/plugin/asciidocjs/node_modules/async/internal/ |
D | DoublyLinkedList.js | 16 removeLink(node) { argument 17 if (node.prev) node.prev.next = node.next;else this.head = node.next; 18 if (node.next) node.next.prev = node.prev;else this.tail = node.prev; 20 node.prev = node.next = null; 22 return node; 30 insertAfter(node, newNode) { argument 31 newNode.prev = node; 32 newNode.next = node.next; 33 if (node.next) node.next.prev = newNode;else this.tail = newNode; 34 node.next = newNode; [all …]
|