MCPcopy Create free account
hub / github.com/apache/pig / PigParserNode

Method PigParserNode

src/org/apache/pig/parser/PigParserNode.java:37–43  ·  view source on GitHub ↗
(Token t, String fileName, int lineOffset)

Source from the content-addressed store, hash-verified

35 private List<InvocationPoint> invokStack;
36
37 public PigParserNode(Token t, String fileName, int lineOffset) {
38 super(t);
39 if (t != null && lineOffset > 0) {
40 t.setLine(t.getLine() + lineOffset);
41 }
42 this.fileName = fileName;
43 }
44
45 public PigParserNode(Token t, String fileName, Token start) {
46 this(t, fileName, 0);

Callers

nothing calls this directly

Calls 2

getLineMethod · 0.45
getFileNameMethod · 0.45

Tested by

no test coverage detected