Removed unused symbol.

This commit is contained in:
Ondřej Španěl 2017-03-28 08:06:04 +02:00
parent acb75cec11
commit f4a360b67b

View File

@ -1181,9 +1181,6 @@ var AST_SymbolImport = DEFNODE("SymbolImport", null, {
var AST_SymbolImportForeign = DEFNODE("SymbolImportForeign", null, {
$documentation: "A symbol imported from a module, but it is defined in the other module, and its real name is irrelevant for this module's purposes",
}, AST_Symbol);
var AST_SymbolImportAsterisk = DEFNODE("SymbolImportAsterisk", null, {
$documentation: "All symbols imported / exported from a module",
}, AST_Symbol);
var AST_Label = DEFNODE("Label", "references", {
$documentation: "Symbol naming a label (declaration)",