File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ class SelectiveImportDeclaration extends ImportDeclaration {
230230 * export x from 'a'; // default re-export declaration
231231 * ```
232232 */
233- abstract class ExportDeclaration extends Stmt , @exportdeclaration {
233+ abstract class ExportDeclaration extends Stmt , @export_declaration {
234234 /** Gets the module to which this export declaration belongs. */
235235 ES2015Module getEnclosingModule ( ) { this = result .getAnExport ( ) }
236236
Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ case @stmt.kind of
193193
194194@decl_stmt = @var_decl_stmt | @const_decl_stmt | @let_stmt | @legacy_let_stmt;
195195
196- @exportdeclaration = @export_all_declaration | @export_default_declaration | @export_named_declaration;
196+ @export_declaration = @export_all_declaration | @export_default_declaration | @export_named_declaration;
197197
198198@namespacedefinition = @namespace_declaration | @enum_declaration;
199199@typedefinition = @classdefinition | @interface_declaration | @enum_declaration | @type_alias_declaration | @enum_member;
@@ -389,7 +389,7 @@ case @expr.kind of
389389
390390@exportspecifier = @named_export_specifier | @export_default_specifier | @export_namespace_specifier;
391391
392- @import_or_export_declaration = @import_declaration | @exportdeclaration ;
392+ @import_or_export_declaration = @import_declaration | @export_declaration ;
393393
394394@typeassertion = @as_type_assertion | @prefix_type_assertion;
395395
You can’t perform that action at this time.
0 commit comments