File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -128,6 +128,11 @@ class ConstantValue extends TConstantValue {
128
128
or
129
129
result = ":" + this .getSymbol ( )
130
130
or
131
+ exists ( string s , string flags |
132
+ this .isRegExpWithFlags ( s , flags ) and
133
+ result = "/" + s + "/" + flags
134
+ )
135
+ or
131
136
result = this .getBoolean ( ) .toString ( )
132
137
or
133
138
this .isNil ( ) and result = "nil"
Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ class Content extends TContent {
203
203
204
204
/** Provides different sub classes of `Content`. */
205
205
module Content {
206
- /** An element in an collection, for example an element in array or in a hash. */
206
+ /** An element in a collection, for example an element in an array or in a hash. */
207
207
class ElementContent extends Content , TElementContent { }
208
208
209
209
/** An element in a collection at a known index. */
You can’t perform that action at this time.
0 commit comments