()
| 1075 | }; |
| 1076 | |
| 1077 | function as_name() { |
| 1078 | switch (S.token.type) { |
| 1079 | case "name": |
| 1080 | case "operator": |
| 1081 | case "keyword": |
| 1082 | case "atom": |
| 1083 | return prog1(S.token.value, next); |
| 1084 | default: |
| 1085 | unexpected(); |
| 1086 | } |
| 1087 | }; |
| 1088 | |
| 1089 | function subscripts(expr, allow_calls) { |
| 1090 | if (is("punc", ".")) { |
no test coverage detected
searching dependent graphs…