| /plugin/asciidocjs/node_modules/handlebars/types/ |
| D | index.d.ts | 74 export function parse(input: string, options?: ParseOptions): hbs.AST.Program; 75 export function parseWithoutProcessing(input: string, options?: ParseOptions): hbs.AST.Program; 96 constructor(message: string, node?: hbs.AST.Node); 126 export namespace AST { 127 export const helpers: hbs.AST.helpers; 131 accept(node: hbs.AST.Node): void; 132 Program(program: hbs.AST.Program): void; 133 BlockStatement(block: hbs.AST.BlockStatement): void; 134 PartialStatement(partial: hbs.AST.PartialStatement): void; 135 PartialBlockStatement(partial: hbs.AST.PartialBlockStatement): void; [all …]
|
| /plugin/ifauthex/lib/ |
| D | grammar.php | 7 use \AST\ElementDefinition; 8 use \AST\TokenDefinition; 9 use \AST\InvalidExpressionException; 10 use \AST\MalformedExpressionException; 11 use \AST\Fixing; 202 …return \AST\parse(\AST\tokenize($expr, auth_expr_all_tokens(), auth_expr_ignore_tokens()), auth_ex…
|
| /plugin/asciidocjs/node_modules/handlebars/lib/handlebars/compiler/ |
| D | ast.js | 1 let AST = { variable 24 path.parts.length === 1 && !AST.helpers.scopedId(path) && !path.depth 32 export default AST;
|
| D | compiler.js | 5 import AST from './ast'; 285 AST.helpers.simpleId(path) 295 scoped = AST.helpers.scopedId(path), 371 let isSimple = AST.helpers.simpleId(sexpr.path); 377 let isHelper = !isBlockParam && AST.helpers.helperExpression(sexpr); 433 if (val.parts && !AST.helpers.scopedId(val) && !val.depth) {
|
| /plugin/asciidocjs/node_modules/handlebars/dist/cjs/handlebars/compiler/ |
| D | ast.js | 4 var AST = { variable 22 return path.parts.length === 1 && !AST.helpers.scopedId(path) && !path.depth; 29 exports['default'] = AST;
|
| /plugin/asciidocjs/node_modules/handlebars/dist/amd/handlebars/compiler/ |
| D | ast.js | 4 var AST = { variable 22 return path.parts.length === 1 && !AST.helpers.scopedId(path) && !path.depth; 29 module.exports = AST;
|
| /plugin/asciidocjs/node_modules/handlebars/lib/ |
| D | handlebars.js | 4 import AST from './handlebars/compiler/ast'; 27 hb.AST = AST;
|
| /plugin/ifauthex/_test/ |
| D | general.test.php | 145 if (\AST\TokenDefinition::supportsMultibyte()) { 166 $this->assertInstanceOf(\AST\UnknownTokenException::class, $exc); 179 $this->assertInstanceOf(\AST\UnmatchedWrapperException::class, $exc); 193 $this->assertInstanceOf(\AST\NotEnoughArgumentsException::class, $exc); 209 $this->assertInstanceOf(\AST\MalformedExpressionException::class, $exc); 226 $depthLimit = \AST\parse_config()->EXPR_DEPTH_LIMIT;
|
| /plugin/asciidocjs/node_modules/pug-linker/ |
| D | README.md | 22 Flatten the Pug AST of inclusion and inheritance. 24 …n merely links the AST together; it doesn't read the file system to resolve and parse included and…
|
| /plugin/asciidocjs/node_modules/babylon/ |
| D | README.md | 51 - **sourceFilename**: Correlate output AST nodes with their source filename. Useful when generatin… 61 Babylon generates AST according to [Babel AST format][]. 72 AST for JSX code is based on [Facebook JSX AST][] with the addition of one node type: 76 [Babel AST format]: https://github.com/babel/babylon/blob/master/ast/spec.md 97 [Facebook JSX AST]: https://github.com/facebook/jsx/blob/master/AST.md
|
| D | CHANGELOG.md | 60 …new plugin `estree` can be enabled. In this mode the parser will output an AST that is compliant t… 83 The returned AST will only consist of the expression. The options are the same as for `parse()` 151 Parsing the following code now returns a `FunctionDeclaration` AST node instead of `FunctionExpress… 210 AST spec: fix casing of `RegExpLiteral` ([#318](https://github.com/babel/babylon/pull/318)) (Mathia… 271 The following case produced an invalid AST 278 …s (e.g. ) were used in the input source code they are now correctly encoded in the resulting AST. 714 // AST 738 - Fix `static` property falling through in the declare class Flow AST ([#135](https://github.com/ba… 744 c: number; // this was being marked as static in the AST as well 908 - Document AST differences from ESTree ([#41](https://github.com/babel/babylon/pull/41)) @nene [all …]
|
| /plugin/asciidocjs/node_modules/pug-walk/ |
| D | README.md | 3 Walk and transform a Pug AST 23 Traverse and optionally transform a [Pug AST](https://github.com/pugjs/pug-ast-spec). 25 `ast` is not cloned, so any changes done to it will be done directly on the AST provided. 29 …e AST. It takes either an object or an array as its only parameter. If an object is specified, the… 35 * `includeDependencies` (boolean): Walk the AST of a loaded dependent file (i.e., includes and exte…
|
| /plugin/asciidocjs/node_modules/pug-parser/ |
| D | README.md | 22 Convert Pug tokens to an abstract syntax tree (AST). 26 - `filename` (string): The name of the Pug file; it is included in the produced AST nodes and error… 84 - `filename` (string): The name of the Pug file; it is included in the produced AST nodes and error…
|
| /plugin/findologicxmlexport/vendor/hoa/regex/ |
| D | README.md | 65 expression, i.e. lex, parse and produce an AST. Second, generate strings based 66 on a regular expression by visiting its AST with an isotropic random approach. 72 and produce an AST of the following regular expression: `ab(c|d){2,4}e?`. Thus: 81 // 3. Lex, parse and produce the AST. 116 To generate strings based on the AST of a regular expressions, we will use the
|
| /plugin/asciidocjs/node_modules/pug-code-gen/ |
| D | README.md | 21 Generate a JavaScript function string for the given AST. 23 `ast` is a fully expanded AST for Pug, with all inclusion, extends, and filters resolved.
|
| /plugin/asciidocjs/node_modules/handlebars/dist/amd/ |
| D | handlebars.js | 31 hb.AST = _AST['default'];
|
| /plugin/asciidocjs/node_modules/handlebars/dist/cjs/ |
| D | handlebars.js | 45 hb.AST = _handlebarsCompilerAst2['default'];
|
| /plugin/findologicxmlexport/vendor/hoa/compiler/ |
| D | README.md | 134 * `#node` to create a node the AST (resulting tree); 163 and we will parse a JSON string. If the parsing succeed, it will produce an AST 164 (stands for Abstract Syntax Tree) we can visit, for example to dump the AST: 173 // 3. Dump the AST.
|
| /plugin/combo/vendor/carica/phpcss/ |
| H A D | README.md | 15 … is a parser for CSS 3 selectors. It parses them into an AST and allows them to compile the AST to… 38 Get the AST
|
| /plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/ |
| D | README.md | 115 --spidermonkey Assume input files are SpiderMonkey AST format 593 function `g` (which is the AST node to which the comment is attached to) is 599 ## Support for the SpiderMonkey AST 603 we can't easily change to using the SpiderMonkey AST internally. However, 604 UglifyJS now has a converter which can import a SpiderMonkey AST. 607 SpiderMonkey AST. It has a small CLI utility that parses one file and dumps 608 the AST in JSON on the standard output. To use UglifyJS to mangle and 614 JavaScript, but JS code described in SpiderMonkey AST in JSON. Therefore we 615 don't use our own parser in this case, but just transform that AST into our 616 internal AST. [all …]
|
| /plugin/asciidocjs/node_modules/pug-filters/ |
| D | README.md | 22 Renders all `Filter` nodes in a Pug AST (`ast`), using user-specified filters (`filters`) or a JSTr…
|
| /plugin/asciidocjs/node_modules/uglify-js/ |
| D | README.md | 58 AST format (as JSON). 91 `spidermonkey` to write UglifyJS or SpiderMonkey AST 1025 function `g` (which is the AST node to which the comment is attached to) is 1122 ### Using native Uglify AST with `minify()` 1124 // example: parse only, produce native Uglify AST 1136 // result.ast contains native Uglify AST 1139 // example: accept native Uglify AST input and then compress and mangle 1140 // to produce both code and native AST. 1151 // result.ast contains native Uglify AST 1155 ### Working with Uglify AST [all …]
|
| /plugin/findologicxmlexport/vendor/twig/twig/doc/ |
| D | internals.rst | 21 * Eventually, the *compiler* transforms the AST into PHP code. 78 The parser converts the token stream into an AST (Abstract Syntax Tree), or a
|
| /plugin/asciidocjs/node_modules/acorn/ |
| D | README.md | 162 AST by passing the tree produced by parsing the first file as the 185 expression in a string, and return its AST. It will not complain if 216 Escodegen supports generating comments from AST, attached in 261 a tree. `node` should be the AST node to walk, and `visitors` an 325 - `--compact`: No whitespace is used in the AST output. 327 - `--silent`: Do not output the AST, just return the exit status.
|
| /plugin/asciidocjs/node_modules/with/node_modules/acorn/ |
| D | README.md | 160 AST by passing the tree produced by parsing the first file as the 183 expression in a string, and return its AST. It will not complain if 214 Escodegen supports generating comments from AST, attached in 259 a tree. `node` should be the AST node to walk, and `visitors` an 323 - `--compact`: No whitespace is used in the AST output. 325 - `--silent`: Do not output the AST, just return the exit status.
|