84 lines
1.3 KiB
Plaintext
84 lines
1.3 KiB
Plaintext
==================================
|
|
Empty foreach loop [foreach_empty]
|
|
==================================
|
|
|
|
foreach(var)
|
|
endforeach()
|
|
|
|
---
|
|
|
|
(source_file
|
|
(foreach_loop
|
|
(foreach_command
|
|
(foreach)
|
|
(arguments (argument (unquoted_argument)))
|
|
)
|
|
(endforeach_command
|
|
(endforeach)
|
|
)
|
|
)
|
|
)
|
|
|
|
===============================================================
|
|
Empty foreach loop with one argument endforeach [foreach_empty]
|
|
===============================================================
|
|
|
|
foreach(var)
|
|
endforeach(var)
|
|
|
|
---
|
|
|
|
(source_file
|
|
(foreach_loop
|
|
(foreach_command
|
|
(foreach)
|
|
(arguments (argument (unquoted_argument)))
|
|
)
|
|
(endforeach_command
|
|
(endforeach)
|
|
(argument (unquoted_argument))
|
|
)
|
|
))
|
|
|
|
=================================
|
|
Uppercase foreach [foreach_empty]
|
|
=================================
|
|
|
|
FOREACH(var)
|
|
ENDFOREACH()
|
|
|
|
---
|
|
|
|
(source_file
|
|
(foreach_loop
|
|
(foreach_command
|
|
(foreach)
|
|
(arguments (argument (unquoted_argument)))
|
|
)
|
|
(endforeach_command
|
|
(endforeach)
|
|
)
|
|
)
|
|
)
|
|
|
|
==================================
|
|
Mixed case foreach [foreach_empty]
|
|
==================================
|
|
|
|
forEach(var)
|
|
endForEach()
|
|
|
|
---
|
|
|
|
(source_file
|
|
(foreach_loop
|
|
(foreach_command
|
|
(foreach)
|
|
(arguments (argument (unquoted_argument)))
|
|
)
|
|
(endforeach_command
|
|
(endforeach)
|
|
)
|
|
)
|
|
)
|