mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-15 12:51:30 -05:00
@@ -16,3 +16,4 @@ interface Third extends JQueryEventObjectTest, SecondEvent {}
|
||||
|
||||
|
||||
//// [app.js]
|
||||
///<reference path='jquery.d.ts' />
|
||||
|
||||
@@ -1,10 +1,20 @@
|
||||
//// [commentOnInterface1.ts]
|
||||
//// [tests/cases/compiler/commentOnInterface1.ts] ////
|
||||
|
||||
//// [a.ts]
|
||||
/*! Keep this pinned comment */
|
||||
interface I {
|
||||
}
|
||||
|
||||
// Don't keep this comment.
|
||||
interface I2 {
|
||||
}
|
||||
|
||||
//// [b.ts]
|
||||
///<reference path='a.ts'/>
|
||||
interface I3 {
|
||||
}
|
||||
|
||||
//// [commentOnInterface1.js]
|
||||
//// [a.js]
|
||||
/*! Keep this pinned comment */
|
||||
//// [b.js]
|
||||
///<reference path='a.ts'/>
|
||||
|
||||
@@ -1,4 +1,9 @@
|
||||
=== tests/cases/compiler/commentOnInterface1.ts ===
|
||||
=== tests/cases/compiler/b.ts ===
|
||||
///<reference path='a.ts'/>
|
||||
interface I3 {
|
||||
>I3 : I3
|
||||
}
|
||||
=== tests/cases/compiler/a.ts ===
|
||||
/*! Keep this pinned comment */
|
||||
interface I {
|
||||
>I : I
|
||||
@@ -8,3 +13,4 @@ interface I {
|
||||
interface I2 {
|
||||
>I2 : I2
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,13 @@
|
||||
//@filename: a.ts
|
||||
/*! Keep this pinned comment */
|
||||
interface I {
|
||||
}
|
||||
|
||||
// Don't keep this comment.
|
||||
interface I2 {
|
||||
}
|
||||
|
||||
//@filename: b.ts
|
||||
///<reference path='a.ts'/>
|
||||
interface I3 {
|
||||
}
|
||||
Reference in New Issue
Block a user