-
Notifications
You must be signed in to change notification settings - Fork 849
mruby-regexp: publish $~ alone and derive $&, ` $ `, $', $+ and $1` onward on read
#7281
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -158,6 +158,8 @@ sym[re] # => matched substring or nil | |
|
|
||
| # Global variables | ||
| $~ # last MatchData | ||
| $&, $`, $', $+, $1, $2, ... # read from $~ at the moment they are read | ||
| # (all nil while $~ is nil) | ||
|
Comment on lines
+161
to
+162
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win Document This section documents lazy reads but does not state that assigning 🤖 Prompt for AI Agents |
||
| ``` | ||
|
|
||
| ## Engine Architecture | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.