Skip to content

Commit 087a279

Browse files
committed
Untag passing parsing specs
1 parent 6ccd34a commit 087a279

File tree

1 file changed

+0
-35
lines changed

1 file changed

+0
-35
lines changed

spec/tags/truffle/parsing/parsing_tags.txt

Lines changed: 0 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,13 @@ fails:Parsing a BEGIN block (BEGIN { ... }) case is parsed correctly
22
fails:Parsing a END block (END { ... }) case is parsed correctly
33
fails:Parsing a Encoding keyword (__ENCODING__ keyword) case is parsed correctly
44
fails:Parsing a begin ... end block (with multiple expressions inside a block) case is parsed correctly
5-
65
# issue with implicit rest parameters is tracked here:
76
# - https://bugs.ruby-lang.org/issues/19971
87
# - https://github.com/ruby/prism/issues/1722
98
fails:Parsing a Block (Argument descriptors / with implicit rest parameter (|a,|)) case is parsed correctly
109
fails:Parsing a Block (Arity / with implicit rest parameter (|a,|)) case is parsed correctly
11-
12-
fails:Parsing a class << (reopen an object singleton class) case is parsed correctly
1310
fails:Parsing a Complex number (Complex literal `bri` (without real part) where b is Float is represented as `Complext.convert(0, Rational.convert(b*100, 100))` where 100 is some power of 10 to convert b to Integer) case is parsed correctly
14-
fails:Parsing a Complex number (Complex literal `bri` (without real part) where b is Integer is represented as `Complext.convert(0, Rational.convert(b, 1))`) case is parsed correctly
15-
fails:Parsing a Complex number (Complex literal in format of a + bi is represented as `a + Complex.convert(0, b)`) case is parsed correctly
16-
fails:Parsing a Def (Name / Non singleton / in an anonymous module) case is parsed correctly
17-
fails:Parsing a Def (Name / Singleton / in an anonymous module) case is parsed correctly
18-
fails:Parsing a defined? (with yield in a method body (defined? yield)) case is parsed correctly
19-
fails:Parsing a Ensure keyword (ensure in a method) case is parsed correctly
2011
fails:Parsing a For operator (for ... in ... operator) case is parsed correctly
21-
fails:Parsing a Integer (when doesn't fit into Java Long (>= 64 bits)) case is parsed correctly
2212
fails:Parsing a &&= (Assign an attribute local variable (a.b &&= c)) case is parsed correctly
2313
fails:Parsing a &&= (Assign an referenced element (a[b] &&= c)) case is parsed correctly
2414
fails:Parsing a &&= (Assign an element referenced with multiple indexes (a[b, c, d] &&= e)) case is parsed correctly
@@ -28,44 +18,25 @@ fails:Parsing a &&= (Variable assignment/fully qualified constant (::A &&= b)) c
2818
fails:Parsing a &&= (Variable assignment/global variable ($a &&= b)) case is parsed correctly
2919
fails:Parsing a &&= (Variable assignment/instance variable (@a &&= b)) case is parsed correctly
3020
fails:Parsing a &&= (Variable assignment/local variable (a &&= b)) case is parsed correctly
31-
fails:Parsing a Match (=~ operator) case is parsed correctly
32-
fails:Parsing a Match (=~ operator/with Regexp literal as a RHS) case is parsed correctly
33-
fails:Parsing a Match (=~ operator/with Regexp literal as a LHS (without named capture groups)) case is parsed correctly
3421
fails:Parsing a Match (=~ operator/with Regexp literal as a LHS without interpolation and with named capture groups) case is parsed correctly
3522
fails:Parsing a Parentheses operator (empty) case is parsed correctly
3623
fails:Parsing a Parentheses operator (with multiple expressions, e.g. (1; 2; 3)) case is parsed correctly
3724
fails:Parsing a Parentheses operator (with single expression) case is parsed correctly
3825
fails:Parsing a ||= (Assign an attribute of a local variable (a.b ||= c)) case is parsed correctly
3926
fails:Parsing a ||= (Assign an referenced element (a[b] ||= c)) case is parsed correctly
4027
fails:Parsing a ||= (Assign an element referenced with multiple indexes (a[b, c, d] ||= e)) case is parsed correctly
41-
fails:Parsing a ||= (Variable assignment/class variable (@@a ||= b)) case is parsed correctly
4228
fails:Parsing a ||= (Variable assignment/constant (A ||= b)) case is parsed correctly
4329
fails:Parsing a ||= (Variable assignment/fully qualified constant (::A ||= b)) case is parsed correctly
44-
fails:Parsing a ||= (Variable assignment/global variable ($a ||= b)) case is parsed correctly
45-
fails:Parsing a ||= (Variable assignment/instance variable (@a ||= b)) case is parsed correctly
46-
fails:Parsing a ||= (Variable assignment/local variable (a ||= b)) case is parsed correctly
47-
fails:Parsing a Range (Beginningless Range literal ..b) case is parsed correctly
48-
fails:Parsing a Range (Endless Range literal a..) case is parsed correctly
49-
fails:Parsing a Range (Range literal a...b (with excluded end)) case is parsed correctly
50-
fails:Parsing a Range (Range literal a..b (with included end)) case is parsed correctly
51-
fails:Parsing a Range (When Range boundaries are Integer values) case is parsed correctly
52-
fails:Parsing a Range (When Range boundaries are big Integer values (that don't fit into Java int, so > 2**32)) case is parsed correctly
5330
fails:Parsing a Rational number (with big Integer value (>= 2^64).) case is parsed correctly
5431
fails:Parsing a Rational number (with Float value) case is parsed correctly
55-
fails:Parsing a Rational number (with Integer value) case is parsed correctly
56-
fails:Parsing a Rational number (with negative value) case is parsed correctly
5732
fails:Parsing a Regexp (Regexp literal in boolean context (e.g. condition in if, while, etc)) case is parsed correctly
5833
fails:Parsing a Regexp (Regexp literal in boolean context with interpolation (e.g. condition in if, while, etc)) case is parsed correctly
59-
fails:Parsing a Regexp (a literal) case is parsed correctly
6034
fails:Parsing a Regexp (a literal with interpolation (with #{...})) case is parsed correctly
6135
fails:Parsing a Regexp (a literal with interpolation but without expression (#{})) case is parsed correctly
6236
fails:Parsing a Regexp (a literal with options (e.g. i, x, m, o)) case is parsed correctly
63-
fails:Parsing a Regexp (with named captured group (/(?<a>b)/)) case is parsed correctly
6437
fails:Parsing a Rescue keyword (backtrace optimization / disabled / when rescue section is Range (... rescue 1..3)) case is parsed correctly
6538
fails:Parsing a Rescue keyword (backtrace optimization / disabled / when rescue section is Regexp (... rescue /a/)) case is parsed correctly
6639
fails:Parsing a Rescue keyword (backtrace optimization / enabled / when rescue section is __FILE__ constant (... rescue __FILE__)) case is parsed correctly
67-
fails:Parsing a Rescue keyword (backtrace optimization / enabled / when rescue section is local variable defined in outer scope (... rescue a)) case is parsed correctly
68-
fails:Parsing a Rescue keyword (rescue in a method) case is parsed correctly
6940
fails:Parsing a Rescue keyword (modifier / backtrace optimization / disabled / when rescue section is Range (... rescue 1..3)) case is parsed correctly
7041
fails:Parsing a Rescue keyword (modifier / backtrace optimization / disabled / when rescue section is Regexp (... rescue /a/)) case is parsed correctly
7142
fails:Parsing a Rescue keyword (modifier / backtrace optimization / enabled / when rescue section is __FILE__ constant (... rescue __FILE__)) case is parsed correctly
@@ -79,15 +50,9 @@ fails:Parsing a String (Literal with interpolation when expressions are Strings)
7950
fails:Parsing a Symbol (Literal with interpolation when expressions are % String literals) case is parsed correctly
8051
fails:Parsing a Symbol (Literal with interpolation when expressions are Strings) case is parsed correctly
8152
fails:Parsing a Undef (with multiple Symbols) case is parsed correctly
82-
fails:Parsing a Yield (yield operator with arguments) case is parsed correctly
83-
fails:Parsing a Yield (yield operator with keyword arguments) case is parsed correctly
84-
fails:Parsing a Yield (yield operator with double splat operator (yield **a)) case is parsed correctly
8553
fails:Parsing a Yield (yield operator with splat operator (yield *a)) case is parsed correctly
8654
fails:Parsing a Yield (yield operator with splat operator with multiple following positional arguments (yield *a, b, c)) case is parsed correctly
8755
fails:Parsing a Yield (yield operator with splat operator with multiple preceding and following positional arguments (yield a, *b, c)) case is parsed correctly
88-
fails:Parsing a Yield (yield operator with splat operator with multiple preceding positional arguments (yield a, b, *c)) case is parsed correctly
8956
fails:Parsing a Yield (yield operator with splat operator with a single following positional argument (yield *a, b)) case is parsed correctly
9057
fails:Parsing a Yield (yield operator with splat operator with a single preceding and following positional argument (yield a, *b, c)) case is parsed correctly
91-
fails:Parsing a Yield (yield operator with splat operator with a single preceding positional argument (yield a, *b)) case is parsed correctly
92-
fails:Parsing a Yield (yield operator without arguments) case is parsed correctly
9358
fails:Parsing a Method call (super / outside a method body without explicit arguments) case is parsed correctly

0 commit comments

Comments
 (0)