TypeScript/tests/baselines/reference/amdDependencyCommentName2.js

12 lines
295 B
TypeScript
Raw Normal View History

2015-02-12 18:52:09 +01:00
//// [amdDependencyCommentName2.ts]
///<amd-dependency path='bar' name='b'/>
import m1 = require("m2")
2015-02-12 18:52:09 +01:00
m1.f();
//// [amdDependencyCommentName2.js]
///<amd-dependency path='bar' name='b'/>
2015-04-17 02:32:40 +02:00
define(["require", "exports", "bar", "m2"], function (require, exports, b, m1) {
2015-02-12 18:52:09 +01:00
m1.f();
});