prism 0.19.0 → 0.20.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +29 -1
- data/Makefile +5 -0
- data/README.md +8 -6
- data/config.yml +236 -38
- data/docs/build_system.md +19 -2
- data/docs/cruby_compilation.md +27 -0
- data/docs/parser_translation.md +34 -0
- data/docs/parsing_rules.md +19 -0
- data/docs/releasing.md +3 -3
- data/docs/ruby_api.md +1 -1
- data/docs/serialization.md +17 -5
- data/ext/prism/api_node.c +101 -81
- data/ext/prism/extension.c +74 -11
- data/ext/prism/extension.h +1 -1
- data/include/prism/ast.h +1699 -504
- data/include/prism/defines.h +8 -0
- data/include/prism/diagnostic.h +39 -2
- data/include/prism/encoding.h +10 -0
- data/include/prism/options.h +40 -14
- data/include/prism/parser.h +33 -17
- data/include/prism/util/pm_buffer.h +9 -0
- data/include/prism/util/pm_constant_pool.h +7 -0
- data/include/prism/util/pm_newline_list.h +0 -11
- data/include/prism/version.h +2 -2
- data/include/prism.h +19 -2
- data/lib/prism/debug.rb +11 -5
- data/lib/prism/dot_visitor.rb +36 -14
- data/lib/prism/dsl.rb +22 -22
- data/lib/prism/ffi.rb +2 -2
- data/lib/prism/node.rb +1020 -737
- data/lib/prism/node_ext.rb +2 -2
- data/lib/prism/parse_result.rb +17 -9
- data/lib/prism/serialize.rb +53 -29
- data/lib/prism/translation/parser/compiler.rb +1831 -0
- data/lib/prism/translation/parser/lexer.rb +335 -0
- data/lib/prism/translation/parser/rubocop.rb +37 -0
- data/lib/prism/translation/parser.rb +163 -0
- data/lib/prism/translation.rb +11 -0
- data/lib/prism.rb +1 -0
- data/prism.gemspec +12 -5
- data/rbi/prism.rbi +150 -88
- data/rbi/prism_static.rbi +15 -3
- data/sig/prism.rbs +996 -961
- data/sig/prism_static.rbs +123 -46
- data/src/diagnostic.c +259 -219
- data/src/encoding.c +4 -8
- data/src/node.c +2 -6
- data/src/options.c +24 -5
- data/src/prettyprint.c +174 -42
- data/src/prism.c +1136 -328
- data/src/serialize.c +12 -9
- data/src/token_type.c +353 -4
- data/src/util/pm_buffer.c +11 -0
- data/src/util/pm_constant_pool.c +12 -11
- data/src/util/pm_newline_list.c +2 -14
- metadata +10 -3
- data/docs/building.md +0 -29
data/sig/prism_static.rbs
CHANGED
@@ -1,32 +1,79 @@
|
|
1
1
|
module Prism
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
2
|
+
BACKEND: :CEXT | :FFI
|
3
|
+
VERSION: String
|
4
|
+
|
5
|
+
def self.parse: (String source, ?filepath: String, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> ParseResult[ProgramNode]
|
6
|
+
def self.lex: (String source, ?filepath: String, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> ParseResult[Array[[Token, Integer]]]
|
7
|
+
def self.parse_lex: (String source, ?filepath: String, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> ParseResult[[ProgramNode, Array[[Token, Integer]]]]
|
8
|
+
def self.dump: (String source, ?filepath: String, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> String
|
9
|
+
def self.parse_comments: (String source, ?filepath: String, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> Array[Comment]
|
10
|
+
def self.parse_success?: (String source, ?filepath: String, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> bool
|
11
|
+
def self.parse_failure?: (String source, ?filepath: String, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> bool
|
12
|
+
|
13
|
+
def self.parse_file: (String filepath, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> ParseResult[ProgramNode]
|
14
|
+
def self.lex_file: (String filepath, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> ParseResult[Array[[Token, Integer]]]
|
15
|
+
def self.parse_lex_file: (String filepath, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> ParseResult[[ProgramNode, Array[[Token, Integer]]]]
|
16
|
+
def self.dump_file: (String filepath, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> String
|
17
|
+
def self.parse_file_comments: (String filepath, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> Array[Comment]
|
18
|
+
def self.parse_file_failure?: (String filepath, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> bool
|
19
|
+
def self.parse_file_success?: (String filepath, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> bool
|
20
|
+
|
21
|
+
def self.load: (String source, String serialized) -> ParseResult[ProgramNode]
|
22
|
+
|
23
|
+
type ripper_token = [[Integer, Integer], Symbol, String, untyped]
|
24
|
+
def self.lex_compat: (String source, ?filepath: String, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> ParseResult[Array[ripper_token]]
|
25
|
+
def self.lex_ripper: (String source) -> Array[ripper_token]
|
26
|
+
|
27
|
+
class ParseResult[T]
|
28
|
+
attr_reader value: T
|
29
|
+
attr_reader comments: Array[Comment]
|
30
|
+
attr_reader magic_comments: Array[MagicComment]
|
31
|
+
attr_reader data_loc: Location?
|
32
|
+
attr_reader errors: Array[ParseError]
|
33
|
+
attr_reader warnings: Array[ParseWarning]
|
34
|
+
attr_reader source: Source
|
35
|
+
|
36
|
+
def initialize: (T value, Array[Comment] comments, Array[MagicComment] magic_comments, Location? data_loc, Array[ParseError] errors, Array[ParseWarning] warnings, Source source) -> void
|
37
|
+
def deconstruct_keys: (Array[Symbol] keys) -> { value: T, comments: Array[Comment], magic_comments: Array[MagicComment], data_loc: Location?, errors: Array[ParseError], warnings: Array[ParseWarning] }
|
38
|
+
def success?: () -> bool
|
39
|
+
def failure?: () -> bool
|
8
40
|
end
|
9
41
|
|
10
42
|
class ParseError
|
11
|
-
|
12
|
-
|
43
|
+
attr_reader message: String
|
44
|
+
attr_reader location: Location
|
45
|
+
|
46
|
+
def initialize: (String message, Location location) -> void
|
47
|
+
def deconstruct_keys: (Array[Symbol] keys) -> { message: String, location: Location }
|
13
48
|
end
|
14
49
|
|
15
50
|
class ParseWarning
|
16
|
-
|
17
|
-
|
51
|
+
attr_reader message: String
|
52
|
+
attr_reader location: Location
|
53
|
+
|
54
|
+
def initialize: (String message, Location location) -> void
|
55
|
+
def deconstruct_keys: (Array[Symbol] keys) -> { message: String, location: Location }
|
18
56
|
end
|
19
57
|
|
20
58
|
class Node
|
59
|
+
@newline: bool
|
60
|
+
|
61
|
+
attr_reader location: Location
|
62
|
+
|
21
63
|
def child_nodes: () -> Array[Node?]
|
22
|
-
def
|
64
|
+
def newline?: () -> bool
|
65
|
+
def set_newline_flag: (Array[bool] newline_marked) -> void
|
23
66
|
def slice: () -> String
|
67
|
+
def pretty_print: (untyped q) -> untyped
|
68
|
+
def inspect: (?NodeInspector inspector) -> String # TODO: not right, only is defined on subclasses
|
24
69
|
def to_dot: () -> String
|
25
70
|
end
|
26
71
|
|
27
72
|
class Comment
|
28
|
-
|
29
|
-
|
73
|
+
attr_reader location: Location
|
74
|
+
|
75
|
+
def initialize: (Location location) -> void
|
76
|
+
def deconstruct_keys: (Array[Symbol] keys) -> { location: Location }
|
30
77
|
end
|
31
78
|
|
32
79
|
class InlineComment < Comment
|
@@ -34,22 +81,45 @@ module Prism
|
|
34
81
|
end
|
35
82
|
|
36
83
|
class EmbDocComment < Comment
|
84
|
+
def trailing?: () -> false
|
37
85
|
end
|
38
86
|
|
39
|
-
class
|
87
|
+
class MagicComment
|
88
|
+
attr_reader key_loc: Location
|
89
|
+
attr_reader value_loc: Location
|
90
|
+
|
91
|
+
def initialize: (Location key_loc, Location value_loc) -> void
|
92
|
+
|
93
|
+
def key: () -> String
|
94
|
+
def value: () -> String
|
95
|
+
|
96
|
+
def deconstruct_keys: (Array[Symbol] keys) -> { key_loc: Location, value_loc: Location }
|
40
97
|
end
|
41
98
|
|
42
99
|
class Location
|
43
|
-
|
100
|
+
attr_reader source: Source | nil
|
101
|
+
attr_reader start_offset: Integer
|
102
|
+
attr_reader length: Integer
|
103
|
+
attr_reader comments: Array[Comment]
|
104
|
+
|
105
|
+
def initialize: (Source? source, Integer start_offset, Integer length) -> void
|
106
|
+
def copy: (?source: Source, ?start_offset: Integer, ?length: Integer) -> Location
|
44
107
|
def slice: () -> String
|
45
|
-
def
|
46
|
-
def copy: (**untyped) -> Location
|
47
|
-
def start_offset: () -> Integer
|
108
|
+
def start_character_offset: () -> Integer
|
48
109
|
def end_offset: () -> Integer
|
110
|
+
def end_character_offset: () -> Integer
|
49
111
|
def start_line: () -> Integer
|
112
|
+
def start_line_slice: () -> String
|
50
113
|
def end_line: () -> Integer
|
51
114
|
def start_column: () -> Integer
|
115
|
+
def start_character_column: () -> Integer
|
52
116
|
def end_column: () -> Integer
|
117
|
+
def end_character_column: () -> Integer
|
118
|
+
def deconstruct_keys: (Array[Symbol] keys) -> { start_offset: Integer, end_offset: Integer }
|
119
|
+
def pretty_print: (untyped q) -> untyped
|
120
|
+
def join: (Location other) -> Location
|
121
|
+
|
122
|
+
def self.null: () -> Location
|
53
123
|
end
|
54
124
|
|
55
125
|
class Source
|
@@ -57,30 +127,24 @@ module Prism
|
|
57
127
|
attr_reader start_line: Integer
|
58
128
|
attr_reader offsets: Array[Integer]
|
59
129
|
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
def
|
65
|
-
def
|
66
|
-
def
|
67
|
-
def line_offset: (value: Integer) -> Integer
|
68
|
-
def column: (value: Integer) -> Integer
|
130
|
+
def initialize: (String source, ?Integer start_line, ?Array[Integer] offsets) -> void
|
131
|
+
def slice: (Integer byte_offset, Integer length) -> String
|
132
|
+
def line: (Integer byte_offset) -> Integer
|
133
|
+
def line_offset: (Integer byte_offset) -> Integer
|
134
|
+
def column: (Integer byte_offset) -> Integer
|
135
|
+
def character_offset: (Integer byte_offset) -> Integer
|
136
|
+
def character_column: (Integer byte_offset) -> Integer
|
69
137
|
end
|
70
138
|
|
71
139
|
class Token
|
72
|
-
attr_reader type:
|
140
|
+
attr_reader type: Symbol
|
73
141
|
attr_reader value: String
|
74
142
|
attr_reader location: Location
|
75
143
|
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
def initialize: (type: untyped, value: String, location: Location) -> void
|
81
|
-
def deconstruct_keys: (keys: untyped) -> untyped
|
82
|
-
def pretty_print: (q: untyped) -> untyped
|
83
|
-
def ==: (other: untyped) -> bool
|
144
|
+
def initialize: (Symbol type, String value, Location location) -> void
|
145
|
+
def deconstruct_keys: (Array[Symbol] keys) -> { type: Symbol, value: String, location: Location }
|
146
|
+
def pretty_print: (untyped q) -> untyped
|
147
|
+
def ==: (untyped other) -> bool
|
84
148
|
end
|
85
149
|
|
86
150
|
class NodeInspector
|
@@ -90,35 +154,48 @@ module Prism
|
|
90
154
|
@prefix: String
|
91
155
|
@output: String
|
92
156
|
|
93
|
-
def initialize: (prefix
|
157
|
+
def initialize: (?String prefix) -> void
|
94
158
|
|
95
159
|
# Appends a line to the output with the current prefix.
|
96
|
-
def <<: (line
|
160
|
+
def <<: (String line) -> void
|
97
161
|
|
98
162
|
# This generates a string that is used as the header of the inspect output
|
99
163
|
# for any given node.
|
100
|
-
def header: (node
|
164
|
+
def header: (Node node) -> String
|
101
165
|
|
102
166
|
# Generates a string that represents a list of nodes. It handles properly
|
103
167
|
# using the box drawing characters to make the output look nice.
|
104
|
-
def list: (prefix
|
168
|
+
def list: (String prefix, Array[Node] nodes) -> String
|
105
169
|
|
106
170
|
# Generates a string that represents a location field on a node.
|
107
|
-
def location: (value
|
171
|
+
def location: (Location? value) -> String
|
108
172
|
|
109
173
|
# Generates a string that represents a child node.
|
110
|
-
def child_node: (node
|
174
|
+
def child_node: (Node node, String append) -> String
|
111
175
|
|
112
176
|
# Returns a new inspector that can be used to inspect a child node.
|
113
|
-
def child_inspector: (append
|
177
|
+
def child_inspector: (String append) -> NodeInspector
|
114
178
|
|
115
179
|
# Returns the output as a string.
|
116
180
|
def to_str: () -> String
|
117
181
|
end
|
118
182
|
|
119
183
|
class BasicVisitor
|
120
|
-
def visit: (
|
121
|
-
def visit_all: (
|
122
|
-
def visit_child_nodes: (node
|
184
|
+
def visit: (Node? node) -> void
|
185
|
+
def visit_all: (Array[Node?] nodes) -> void
|
186
|
+
def visit_child_nodes: (Node node) -> void
|
187
|
+
end
|
188
|
+
|
189
|
+
class Pattern
|
190
|
+
class CompilationError < StandardError
|
191
|
+
end
|
192
|
+
|
193
|
+
attr_reader query: String
|
194
|
+
|
195
|
+
@compiled: Proc
|
196
|
+
|
197
|
+
def initialize: (String query) -> void
|
198
|
+
def compile: () -> Proc
|
199
|
+
def scan: (Node root) -> void
|
123
200
|
end
|
124
201
|
end
|