mirror of
https://github.com/github/codeql.git
synced 2026-04-28 02:05:14 +02:00
@@ -161,7 +161,8 @@ public class CustomParser extends FlowParser {
|
||||
} else if (options.v8Extensions() && this.type == TokenType.modulo) {
|
||||
// parse V8 native
|
||||
this.next();
|
||||
Identifier name = this.parseIdent(true);
|
||||
Identifier buildinName = this.parseIdent(true);
|
||||
Identifier name = this.finishNode(new Identifier(new SourceLocation(startLoc), "%" + buildinName.getName()));
|
||||
this.expect(TokenType.parenL);
|
||||
List<Expression> args = this.parseExprList(TokenType.parenR, false, false, null);
|
||||
CallExpression node =
|
||||
|
||||
@@ -43,7 +43,7 @@ public class Main {
|
||||
* A version identifier that should be updated every time the extractor changes in such a way that
|
||||
* it may produce different tuples for the same file under the same {@link ExtractorConfig}.
|
||||
*/
|
||||
public static final String EXTRACTOR_VERSION = "2020-08-24";
|
||||
public static final String EXTRACTOR_VERSION = "2020-09-02";
|
||||
|
||||
public static final Pattern NEWLINE = Pattern.compile("\n");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user