(AstNode n)
| 828 | } |
| 829 | |
| 830 | private static String getDirective(AstNode n) { |
| 831 | if (n instanceof ExpressionStatement) { |
| 832 | AstNode e = ((ExpressionStatement) n).getExpression(); |
| 833 | if (e instanceof StringLiteral) { |
| 834 | return ((StringLiteral) e).getValue(); |
| 835 | } |
| 836 | } |
| 837 | return null; |
| 838 | } |
| 839 | |
| 840 | private void parseFunctionParams(FunctionNode fnNode) throws IOException { |
| 841 | ++nestingOfFunctionParams; |
no test coverage detected