Support extensionless <reference> comments.

Fixes #344.
This commit is contained in:
Anders Hejlsberg
2014-08-05 14:32:53 -07:00
parent 97987b1c3e
commit a2a6b8a410
2 changed files with 33 additions and 7 deletions

View File

@@ -0,0 +1,19 @@
// @Filename: t.ts
/// <reference path="a"/>
/// <reference path="b"/>
/// <reference path="c"/>
var a = aa; // Check that a.ts is referenced
var b = bb; // Check that b.d.ts is referenced
var c = cc; // Check that c.ts has precedence over c.d.ts
// @Filename: a.ts
var aa = 1;
// @Filename: b.d.ts
declare var bb: number;
// @Filename: c.ts
var cc = 1;
// @Filename: c.d.ts
declare var xx: number;