UNPKG

accelerator-core

Version:

[![Build Status](https://travis-ci.org/furkleindustries/accelerator-core.svg?branch=master)](https://travis-ci.org/furkleindustries/accelerator-core)

15 lines (13 loc) 362 B
export class DebugMetadata { public startLineNumber: number = 0; public endLineNumber: number = 0; public fileName: string | null = null; public sourceName: string | null = null; public toString() { if (this.fileName !== null) { return `line ${this.startLineNumber} of ${this.fileName}"`; } else { return 'line ' + this.startLineNumber; } } }