()
| 167 | } |
| 168 | |
| 169 | public ProgramTree program() { |
| 170 | try { |
| 171 | pushContext(ContextType.PROGRAM); |
| 172 | List<Statement> statements = sourceElements(); |
| 173 | return factory.program(statements, currentContext().isStrict()); |
| 174 | } finally { |
| 175 | popContext(); |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | // ---------------------------------------------------------------------- |
| 180 | // Expressions |
no test coverage detected