Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | parse.y: hoisted out new_nil_at | Nobuyoshi Nakada | 2020-03-11 | 1 | -41/+17 |
| | | | | new_nil_at: create NEW_NIL node with zero-width location. | ||||
* | parse.y: unified kwrest and no-kwrest | Nobuyoshi Nakada | 2020-03-11 | 1 | -22/+14 |
| | |||||
* | Renamed `lex_flags` as `lex_context` | Nobuyoshi Nakada | 2020-03-05 | 1 | -49/+49 |
| | |||||
* | Preserve `kwarg` flag and fix up f5c904c2a9 | Nobuyoshi Nakada | 2020-03-03 | 1 | -0/+2 |
| | |||||
* | Reduced parser stack usage by merging non-result actions | Nobuyoshi Nakada | 2020-03-02 | 1 | -14/+14 |
| | |||||
* | Packed stacked bit flags into one struct | Nobuyoshi Nakada | 2020-03-02 | 1 | -45/+51 |
| | |||||
* | Allow newlines inside braced pattern | Nobuyoshi Nakada | 2020-03-02 | 1 | -2/+10 |
| | |||||
* | Allow trailing comma in hash pattern | Kazuki Tsujimoto | 2020-03-01 | 1 | -0/+4 |
| | |||||
* | Named `tLABEL` token | Nobuyoshi Nakada | 2020-02-29 | 1 | -1/+1 |
| | |||||
* | Refined argument name | Nobuyoshi Nakada | 2020-02-28 | 1 | -3/+3 |
| | |||||
* | Fixed duplicated warning | Nobuyoshi Nakada | 2020-02-10 | 1 | -6/+0 |
| | | | | | As `command_rhs` is always a "value expression", `command_asgn` does not need the same check. | ||||
* | Do not warn CR inside string literal | Nobuyoshi Nakada | 2020-02-04 | 1 | -6/+8 |
| | |||||
* | Make RATIONAL_SET_{NUM,DEN} static inline functions | Kenta Murata | 2020-01-17 | 1 | -1/+1 |
| | |||||
* | Separate numbered parameter scope in eval | Nobuyoshi Nakada | 2020-01-16 | 1 | -1/+1 |
| | | | | [Feature #16432] | ||||
* | Fixed the location of args node with numbered parameter | Nobuyoshi Nakada | 2020-01-16 | 1 | -1/+5 |
| | |||||
* | parse.y: fix a wrong sizeof argument for ruby_sized_xfree | Yusuke Endoh | 2020-01-05 | 1 | -1/+1 |
| | |||||
* | Make eval(code, binding) use (eval) as __FILE__ and 1 as __LINE__ | Jeremy Evans | 2020-01-03 | 1 | -24/+0 |
| | | | | | | | | | This removes the warning that was added in 3802fb92ff8c83eed3e867db20f72c53932f542d, and switches the behavior so that the eval does not use the binding's __FILE__ and __LINE__ implicitly. Fixes [Bug #4352] | ||||
* | decouple internal.h headers | 卜部昌平 | 2019-12-26 | 1 | -11/+27 |
| | | | | | | | | | | | | | | | | | | Saves comitters' daily life by avoid #include-ing everything from internal.h to make each file do so instead. This would significantly speed up incremental builds. We take the following inclusion order in this changeset: 1. "ruby/config.h", where _GNU_SOURCE is defined (must be the very first thing among everything). 2. RUBY_EXTCONF_H if any. 3. Standard C headers, sorted alphabetically. 4. Other system headers, maybe guarded by #ifdef 5. Everything else, sorted alphabetically. Exceptions are those win32-related headers, which tend not be self- containing (headers have inclusion order dependencies). | ||||
* | Show the error line only when same as the current | Nobuyoshi Nakada | 2019-12-25 | 1 | -1/+12 |
| | |||||
* | Added `experimental` warning category | Nobuyoshi Nakada | 2019-12-20 | 1 | -1/+2 |
| | | | | [Feature #16420] | ||||
* | Hoisted out new_case3 | Nobuyoshi Nakada | 2019-12-20 | 1 | -4/+12 |
| | |||||
* | Refined the warning message for numbered-parameter like variables | Nobuyoshi Nakada | 2019-12-20 | 1 | -1/+1 |
| | | | | [Bug #16438] | ||||
* | Refined the warning message for numbered-parameter like variables | Nobuyoshi Nakada | 2019-12-20 | 1 | -1/+1 |
| | | | | [Bug #16438] | ||||
* | Warn also numbered parameter like methods | Nobuyoshi Nakada | 2019-12-20 | 1 | -0/+3 |
| | |||||
* | Warn also numbered parameter like parameters | Nobuyoshi Nakada | 2019-12-20 | 1 | -4/+10 |
| | | | | [Feature #16433] | ||||
* | parse.y: suppress "set but not used" warnings on ripper.y | Yusuke Endoh | 2019-12-05 | 1 | -5/+4 |
| | |||||
* | Silence incorrect assigned but unused variable warnings in ripper | Jeremy Evans | 2019-12-04 | 1 | -0/+2 |
| | | | | | | | To only emit the warnings in correct cases would require tracking local variable usage in ripper, which ripper currently does not do. Fixes [Bug #15188] | ||||
* | Make single line pattern matching void expression | Nobuyoshi Nakada | 2019-11-30 | 1 | -0/+11 |
| | | | | | Instead of returning `nil`, raise a syntax error if its value is used. [Feature #16355] | ||||
* | Raise `NoMatchingPatternError` when expr `in` pat doesn't match | Nobuyoshi Nakada | 2019-11-28 | 1 | -1/+1 |
| | | | | | | | | * `expr in pattern` should raise `NoMatchingError` when unmatched * `expr in pattern` should return `nil`. (this is unspecified, but this feature is experimental, at all) [Feature #16355] | ||||
* | [ripper] Fixed unique key check in pattern matching | Nobuyoshi Nakada | 2019-11-26 | 1 | -67/+52 |
| | | | | | | Check keys * by an internal table, instead of unstable dispatched results * and by parsed key values, instead of escaped forms in the source | ||||
* | Hoisted out `push_pvtbl`/`pop_pvtbl` | Nobuyoshi Nakada | 2019-11-26 | 1 | -16/+19 |
| | |||||
* | Wrap `p_kw` in an array at `p_kwarg` | Nobuyoshi Nakada | 2019-11-26 | 1 | -3/+4 |
| | | | | | Not in `p_kw` itself, which makes key and variable/expr pair only now. | ||||
* | [ripper] Quoted label without expression must be a local variable | Nobuyoshi Nakada | 2019-11-25 | 1 | -34/+58 |
| | | | | | | | | | The difference from 0b8c73aa65add5c57b46b0cfdf4e661508802172 is to add the result of `string_add` event to marking objects. ```C RNODE($1)->nd_rval = add_mark_object(p, $$); ``` | ||||
* | Revert "[ripper] Quoted label without expression must be a local variable" | Nobuyoshi Nakada | 2019-11-20 | 1 | -58/+34 |
| | | | | | This reverts commit 0b8c73aa65add5c57b46b0cfdf4e661508802172, which seems breaking RVALUE consistency check. | ||||
* | [ripper] Quoted label without expression must be a local variable | Nobuyoshi Nakada | 2019-11-19 | 1 | -34/+58 |
| | |||||
* | Warn on access/modify of $SAFE, and remove effects of modifying $SAFE | Jeremy Evans | 2019-11-18 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | This removes the security features added by $SAFE = 1, and warns for access or modification of $SAFE from Ruby-level, as well as warning when calling all public C functions related to $SAFE. This modifies some internal functions that took a safe level argument to no longer take the argument. rb_require_safe now warns, rb_require_string has been added as a version that takes a VALUE and does not warn. One public C function that still takes a safe level argument and that this doesn't warn for is rb_eval_cmd. We may want to consider adding an alternative method that does not take a safe level argument, and warn for rb_eval_cmd. | ||||
* | delete unused functions | 卜部昌平 | 2019-11-14 | 1 | -35/+2 |
| | | | | | | | | | | | | Looking at the list of symbols inside of libruby-static.a, I found hundreds of functions that are defined, but used from nowhere. There can be reasons for each of them (e.g. some functions are specific to some platform, some are useful when debugging, etc). However it seems the functions deleted here exist for no reason. This changeset reduces the size of ruby binary from 26,671,456 bytes to 26,592,864 bytes on my machine. | ||||
* | `#@1` is no longer an embedded variable | Nobuyoshi Nakada | 2019-11-14 | 1 | -3/+0 |
| | |||||
* | Revert "Method reference operator" | Nobuyoshi Nakada | 2019-11-12 | 1 | -27/+1 |
| | | | | | This reverts commit 67c574736912003c377218153f9d3b9c0c96a17b. [Feature #16275] | ||||
* | Warn on `...` at EOL | Nobuyoshi Nakada | 2019-11-12 | 1 | -0/+3 |
| | |||||
* | Disable tOROP at EXPR_BEG | Nobuyoshi Nakada | 2019-11-12 | 1 | -9/+5 |
| | | | | Both cannot appear there anyway. | ||||
* | Clear current argument name at empty block argument [Bug #16343] | Nobuyoshi Nakada | 2019-11-12 | 1 | -0/+1 |
| | |||||
* | Revert "Warn EOF char in comment" | NARUSE, Yui | 2019-11-11 | 1 | -25/+4 |
| | | | | This reverts commit 69ec3f70fab0c1c537c68fb135cc315181b1d750. | ||||
* | Revert "Elaborated EOF char message a little" | NARUSE, Yui | 2019-11-11 | 1 | -1/+1 |
| | | | | This reverts commit 6eaac7cfac668d6669be694fd7b723c4982ed218. | ||||
* | Elaborated EOF char message a little | Nobuyoshi Nakada | 2019-11-11 | 1 | -1/+1 |
| | |||||
* | Warn EOF char in comment | Nobuyoshi Nakada | 2019-11-11 | 1 | -4/+25 |
| | |||||
* | Fixed embedded document with EOF char | Nobuyoshi Nakada | 2019-11-11 | 1 | -4/+16 |
| | |||||
* | Disallow omission of parentheses/brackets in single line pattern matching ↵ | Kazuki Tsujimoto | 2019-11-10 | 1 | -1/+1 |
| | | | | [Feature #16182] | ||||
* | Disallow duplicated pattern variable | Kazuki Tsujimoto | 2019-11-07 | 1 | -4/+41 |
| | |||||
* | Add missing semicolon | Kazuki Tsujimoto | 2019-11-07 | 1 | -0/+1 |
| |