diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-12-27 20:05:45 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-12-27 20:05:45 +0900 |
| commit | d57d6e2b5b67d39db8d1d80e699177cb35741661 (patch) | |
| tree | 6e945747e8706bca4db04e6b4fe7c6740bd9e89d /include | |
| parent | dad43359cbf08a19868ee3be1731cbfefb406e73 (diff) | |
| parent | 6312a50045f95e4730e24506da34b49b67d52a86 (diff) | |
| download | mruby-d57d6e2b5b67d39db8d1d80e699177cb35741661.tar.gz mruby-d57d6e2b5b67d39db8d1d80e699177cb35741661.zip | |
Merge pull request #5246 from SeekingMeaning/squiggly-heredocs
Add support for squiggly heredocs
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby/compile.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mruby/compile.h b/include/mruby/compile.h index 9b062e60b..d94e4c1f5 100644 --- a/include/mruby/compile.h +++ b/include/mruby/compile.h @@ -99,6 +99,7 @@ enum mrb_string_type { /* heredoc structure */ struct mrb_parser_heredoc_info { mrb_bool allow_indent:1; + mrb_bool remove_indent:1; mrb_bool line_head:1; enum mrb_string_type type; const char *term; |
