| 94 | declare var TestGlobal: number; |
| 95 | |
| 96 | interface IParserTest { |
| 97 | input: string; |
| 98 | result?: any; |
| 99 | name?: string; |
| 100 | context?: any; |
| 101 | error?: string; |
| 102 | errorSubstrings?: string[]; |
| 103 | errornumber?: number; |
| 104 | functionContext?: any; |
| 105 | } |
| 106 | |
| 107 | |
| 108 | var parserTests: IParserTest[] = [ |
nothing calls this directly
no outgoing calls
no test coverage detected