Remove spaces

Co-authored-by: Nobuyoshi Nakada <nobu.nakada@gmail.com>
This commit is contained in:
Yudai Takada 2024-11-02 18:30:55 +09:00
parent 4b02a7b794
commit d4009d939c
Notes: git 2025-01-03 12:26:40 +00:00

4
ast.c
View File

@ -120,8 +120,8 @@ setup_vparser(VALUE keep_script_lines, VALUE error_tolerant, VALUE keep_tokens)
{
VALUE vparser = ast_parse_new();
if (RTEST(keep_script_lines)) rb_parser_set_script_lines(vparser);
if (RTEST(error_tolerant)) rb_parser_error_tolerant(vparser);
if (RTEST(keep_tokens)) rb_parser_keep_tokens(vparser);
if (RTEST(error_tolerant)) rb_parser_error_tolerant(vparser);
if (RTEST(keep_tokens)) rb_parser_keep_tokens(vparser);
return vparser;
}