| 1 | interface GrammarSourceObject { |
| 2 | readonly toString: () => string; |
| 3 | |
| 4 | /** |
| 5 | * If specified, allows the grammar source to be embedded in a larger file |
| 6 | * at some offset. |
| 7 | */ |
| 8 | readonly offset?: undefined | ((loc: Location) => Location); |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected