33 lines
937 B
Plaintext
33 lines
937 B
Plaintext
================================================================================
|
|
Shebang ignored at beginning of first line
|
|
================================================================================
|
|
#!/usr/bin/env groovy
|
|
hello
|
|
--------------------------------------------------------------------------------
|
|
|
|
(source_file
|
|
(statement
|
|
(expression
|
|
(qualified_name
|
|
(identifier)))))
|
|
|
|
================================================================================
|
|
Shebang not ignored after first character
|
|
================================================================================
|
|
#!/usr/bin/env groovy
|
|
--------------------------------------------------------------------------------
|
|
|
|
(source_file
|
|
(ERROR
|
|
(UNEXPECTED '#'))
|
|
(statement
|
|
(expression
|
|
(qualified_name
|
|
(identifier))))
|
|
(ERROR
|
|
(UNEXPECTED '/')
|
|
(identifier)
|
|
(UNEXPECTED '/')
|
|
(identifier)
|
|
(identifier)))
|