本文整理了Java中org.jruby.Ruby.addEvalParseToStats
方法的一些代码示例,展示了Ruby.addEvalParseToStats
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Ruby.addEvalParseToStats
方法的具体详情如下:
包路径:org.jruby.Ruby
类名称:Ruby
方法名:addEvalParseToStats
暂无
代码示例来源:origin: org.jruby/jruby-core
public Node parseEval(ByteList content, String file, DynamicScope scope, int lineNumber) {
addEvalParseToStats();
return parser.parse(file, content, scope, new ParserConfiguration(this,
lineNumber, false, false, false, config));
}
代码示例来源:origin: org.jruby/jruby-complete
public Node parse(ByteList content, String file, DynamicScope scope, int lineNumber,
boolean extraPositionInformation) {
addEvalParseToStats();
return parser.parse(file, content, scope, new ParserConfiguration(this,
lineNumber, extraPositionInformation, false, true, config));
}
代码示例来源:origin: org.jruby/jruby-complete
public Node parseEval(ByteList content, String file, DynamicScope scope, int lineNumber) {
addEvalParseToStats();
return parser.parse(file, content, scope, new ParserConfiguration(this,
lineNumber, false, false, false, config));
}
代码示例来源:origin: org.jruby/jruby-core
public Node parse(ByteList content, String file, DynamicScope scope, int lineNumber,
boolean extraPositionInformation) {
addEvalParseToStats();
return parser.parse(file, content, scope, new ParserConfiguration(this,
lineNumber, extraPositionInformation, false, true, config));
}
代码示例来源:origin: org.jruby/jruby-core
public Node parseEval(String content, String file, DynamicScope scope, int lineNumber) {
addEvalParseToStats();
return parser.parse(file, encodeToBytes(content), scope, new ParserConfiguration(this, lineNumber, false, false, config));
}
代码示例来源:origin: org.jruby/jruby-complete
public Node parseEval(String content, String file, DynamicScope scope, int lineNumber) {
addEvalParseToStats();
return parser.parse(file, encodeToBytes(content), scope, new ParserConfiguration(this, lineNumber, false, false, config));
}
代码示例来源:origin: org.jruby/jruby-complete
public Node parseInline(InputStream in, String file, DynamicScope scope) {
addEvalParseToStats();
ParserConfiguration parserConfig =
new ParserConfiguration(this, 0, false, true, false, config);
setupSourceEncoding(parserConfig, getEncodingService().getLocaleEncoding());
return parser.parse(file, in, scope, parserConfig);
}
代码示例来源:origin: org.jruby/jruby-core
public Node parseInline(InputStream in, String file, DynamicScope scope) {
addEvalParseToStats();
ParserConfiguration parserConfig =
new ParserConfiguration(this, 0, false, true, false, config);
setupSourceEncoding(parserConfig, getEncodingService().getLocaleEncoding());
return parser.parse(file, in, scope, parserConfig);
}
内容来源于网络,如有侵权,请联系作者删除!