in src/parser/WDL/hermes/wdl_parser.js [2505:2527]
function parse__gen11(ctx) {
var current = ctx.tokens.current();
var rule = current != null ? table[59][current.id] : -1;
var tree = new ParseTree(new NonTerminal(117, '_gen11'));
var ast_parameters;
var subtree;
var t;
ctx.nonterminal = "_gen11";
if (current != null && nonterminal_follow[117].indexOf(current.id) != -1 && nonterminal_first[117].indexOf(current.id) == -1) {
return tree;
}
if (current == null) {
return tree;
}
if (rule == 49) { // $_gen11 = $alias
ctx.rule = rules[49];
tree.astTransform = new AstTransformSubstitution(0);
subtree = parse_alias(ctx);
tree.add(subtree);
return tree;
}
return tree;
}