|
1 | 1 | package org.jruby.prism.parser; |
2 | 2 |
|
3 | | -import org.jcodings.Encoding; |
4 | | -import org.jcodings.specific.ISO8859_1Encoding; |
5 | | -import org.jruby.ParseResult; |
6 | 3 | import org.jruby.Ruby; |
7 | | -import org.jruby.RubyArray; |
8 | | -import org.jruby.RubyIO; |
9 | | -import org.jruby.RubyInstanceConfig; |
10 | | -import org.jruby.RubySymbol; |
11 | | -import org.jruby.ext.coverage.CoverageData; |
12 | 4 | import org.jruby.management.ParserStats; |
13 | | -import org.jruby.parser.Parser; |
14 | | -import org.jruby.parser.ParserManager; |
15 | | -import org.jruby.parser.ParserType; |
16 | | -import org.jruby.parser.StaticScope; |
17 | | -import org.jruby.runtime.DynamicScope; |
18 | | -import org.jruby.runtime.ThreadContext; |
19 | | -import org.jruby.runtime.builtin.IRubyObject; |
20 | | -import org.jruby.runtime.load.LoadServiceResourceInputStream; |
21 | | -import org.jruby.util.ByteList; |
22 | | -import org.jruby.util.CommonByteLists; |
23 | | -import org.jruby.util.io.ChannelHelper; |
24 | | -import org.prism.Nodes; |
25 | | -import org.prism.Nodes.*; |
26 | | -import org.prism.ParsingOptions; |
27 | | -import org.prism.Prism; |
28 | | - |
29 | | -import java.io.ByteArrayInputStream; |
30 | | -import java.io.DataInputStream; |
31 | | -import java.io.IOException; |
32 | | -import java.io.InputStream; |
33 | | -import java.util.ArrayList; |
34 | | -import java.util.Arrays; |
35 | | -import java.util.List; |
36 | | - |
37 | | -import static org.jruby.api.Convert.asSymbol; |
38 | | -import static org.jruby.lexer.LexingCommon.DOLLAR_UNDERSCORE; |
39 | | -import static org.jruby.parser.ParserType.EVAL; |
40 | | -import static org.jruby.parser.ParserType.MAIN; |
41 | 5 |
|
42 | 6 | public class ParserPrismNative extends ParserPrismBase { |
43 | 7 | private final ParserBindingPrism prismLibrary; |
|
0 commit comments