From 5c493f372274041df92c2b0ea4ccbd41cdc7f63e Mon Sep 17 00:00:00 2001 From: Uy Ha Date: Mon, 7 Oct 2024 08:54:04 +0000 Subject: [PATCH] chore: remove tests for generator expression These are remnants from the previous version that has parsing for generator expression. Refer to a414a4c to see why it is removed. --- test/corpus/gen_exp.txt | 143 ---------------------------------------- 1 file changed, 143 deletions(-) delete mode 100644 test/corpus/gen_exp.txt diff --git a/test/corpus/gen_exp.txt b/test/corpus/gen_exp.txt deleted file mode 100644 index 63f8b1c..0000000 --- a/test/corpus/gen_exp.txt +++ /dev/null @@ -1,143 +0,0 @@ -======================================= -Unquoted generator expression [gen_exp] -======================================= -message($<>) - ---- - -(source_file - (normal_command - (identifier) - (argument_list - (argument - (unquoted_argument - (gen_exp) - ) - ) - ) - ) -) - -===================================== -Quoted generator expression [gen_exp] -===================================== -message("$<>") - ---- - -(source_file - (normal_command - (identifier) - (argument_list - (argument - (quoted_argument - (quoted_element - (gen_exp) - ) - ) - ) - ) - ) -) - -===================== -No argument [gen_exp] -===================== -message($) - ---- - -(source_file - (normal_command - (identifier) - (argument_list - (argument - (unquoted_argument - (gen_exp - (argument - (unquoted_argument) - ) - ) - ) - ) - ) - ) -) - -============================================ -No argument with superfluous colon [gen_exp] -============================================ -message($) - ---- - -(source_file - (normal_command - (identifier) - (argument_list - (argument - (unquoted_argument - (gen_exp - (argument - (unquoted_argument) - ) - ) - ) - ) - ) - ) -) - -====================== -One argument [gen_exp] -====================== -message($) - ---- - -(source_file - (normal_command - (identifier) - (argument_list - (argument - (unquoted_argument - (gen_exp - (argument - (unquoted_argument)) - (argument - (unquoted_argument) - ) - ) - ) - ) - ) - ) -) - -======================= -Two arguments [gen_exp] -======================= -message($) - ---- - -(source_file - (normal_command - (identifier) - (argument_list - (argument - (unquoted_argument - (gen_exp - (argument - (unquoted_argument)) - (argument - (unquoted_argument)) - (argument - (unquoted_argument) - ) - ) - ) - ) - ) - ) -)