diff options
| author | mattn <[email protected]> | 2013-03-21 19:45:47 +0900 |
|---|---|---|
| committer | mattn <[email protected]> | 2013-03-21 19:45:47 +0900 |
| commit | 1ab4dbcbf365d0ef75d08d28478c06fcf8628afe (patch) | |
| tree | df456fe8f936e1d5c02549402c32aad9caff9184 /include | |
| parent | 605035bc4261f25063ecf77765b9f844b6e98357 (diff) | |
| download | mruby-1ab4dbcbf365d0ef75d08d28478c06fcf8628afe.tar.gz mruby-1ab4dbcbf365d0ef75d08d28478c06fcf8628afe.zip | |
Backtick operation
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby/compile.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mruby/compile.h b/include/mruby/compile.h index 8b0743fa3..0df0d3d0a 100644 --- a/include/mruby/compile.h +++ b/include/mruby/compile.h @@ -65,6 +65,7 @@ struct mrb_parser_message { #define STR_FUNC_SYMBOL 0x10 #define STR_FUNC_ARRAY 0x20 #define STR_FUNC_HEREDOC 0x40 +#define STR_FUNC_XQUOTE 0x80 enum mrb_string_type { str_not_parsing = (0), @@ -77,6 +78,7 @@ enum mrb_string_type { str_ssymbols = (STR_FUNC_PARSING|STR_FUNC_SYMBOL|STR_FUNC_ARRAY), str_dsymbols = (STR_FUNC_PARSING|STR_FUNC_SYMBOL|STR_FUNC_ARRAY|STR_FUNC_EXPAND), str_heredoc = (STR_FUNC_PARSING|STR_FUNC_HEREDOC), + str_xquote = (STR_FUNC_PARSING|STR_FUNC_XQUOTE|STR_FUNC_EXPAND), }; /* heredoc structure */ |
