Skip to content

Commit

Permalink
Another comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ahejlsberg committed Mar 4, 2015
1 parent 27179b4 commit b2a0e1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1227,7 +1227,7 @@ module ts {
ExportValue = 0x00100000, // Exported value marker (see comment in declareModuleMember in binder)
ExportType = 0x00200000, // Exported type marker (see comment in declareModuleMember in binder)
ExportNamespace = 0x00400000, // Exported namespace marker (see comment in declareModuleMember in binder)
Import = 0x00800000, // Import
Import = 0x00800000, // An alias for another symbol

This comment has been minimized.

Copy link
@CyrusNajmabadi

CyrusNajmabadi Mar 4, 2015

Contributor

Does this include type aliases? If not, can we clarify that in the comment? Being crisp on the distinction woudl be very helpful.

This comment has been minimized.

Copy link
@ahejlsberg

ahejlsberg Mar 4, 2015

Author Member

See comments in final code.

Instantiated = 0x01000000, // Instantiated symbol
Merged = 0x02000000, // Merged symbol (created during program binding)
Transient = 0x04000000, // Transient symbol (created during type check)
Expand Down

0 comments on commit b2a0e1b

Please sign in to comment.