TypeScript/tests/baselines/reference/amdDependencyCommentName1.js

11 lines
229 B
TypeScript
Raw Normal View History

2015-02-12 18:52:09 +01:00
//// [amdDependencyCommentName1.ts]
///<amd-dependency path='bar' name='b'/>
import m1 = require("m2")
2015-02-12 18:52:09 +01:00
m1.f();
//// [amdDependencyCommentName1.js]
///<amd-dependency path='bar' name='b'/>
var m1 = require("m2");
m1.f();