TypeScript/tests/cases/compiler/sourceMap-StringLiteralWithNewLine.ts
2018-05-03 14:18:50 -07:00

17 lines
274 B
TypeScript

// @lib: es5
// @target: ES3
// @sourcemap: true
interface Document {
}
interface Window {
document: Document;
}
declare var window: Window;
module Foo {
var x = "test1";
var y = "test 2\
isn't this a lot of fun";
var z = window.document;
}