diff options
| author | Seeker <[email protected]> | 2020-12-26 23:48:20 -0800 |
|---|---|---|
| committer | Seeker <[email protected]> | 2020-12-26 23:48:20 -0800 |
| commit | 54bfcaf1ff40570850c40c4af2511bf2443a868d (patch) | |
| tree | 09961b979c972a3f6fec1553beb9000e2700aa78 /include | |
| parent | dad43359cbf08a19868ee3be1731cbfefb406e73 (diff) | |
| download | mruby-54bfcaf1ff40570850c40c4af2511bf2443a868d.tar.gz mruby-54bfcaf1ff40570850c40c4af2511bf2443a868d.zip | |
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; |
