traceur
Version:
ES6 to ES5 compiler
80 lines (71 loc) • 2.27 kB
JavaScript
// Copyright 2012 Traceur Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import {ExportsList} from './ModuleSymbol.js';
import {ParseTreeVisitor} from '../../syntax/ParseTreeVisitor.js';
import {
EXPORT_DECLARATION,
IMPORT_DECLARATION
} from '../../syntax/trees/ParseTreeType.js';
/**
* A specialized parse tree visitor for use with modules.
*/
export class ModuleVisitor extends ParseTreeVisitor {
/**
* @param {traceur.util.ErrorReporter} reporter
* @param {Loader} loader
* @param {ModuleSymbol} moduleSymbol The root of the module system.
*/
constructor(reporter, loader, moduleSymbol) {
super();
this.reporter = reporter;
this.loader_ = loader;
this.moduleSymbol = moduleSymbol;
}
/**
* @param {string} Module specifier, not normalized.
* @return {ExportsList|null}
*/
getExportsListForModuleSpecifier(name) {
let referrer = this.moduleSymbol.normalizedName;
return this.loader_.getExportsListForModuleSpecifier(name, referrer);
}
// Limit the trees to visit.
visitFunctionDeclaration(tree) {}
visitFunctionExpression(tree) {}
visitFunctionBody(tree) {}
visitBlock(tree) {}
visitClassDeclaration(tree) {}
visitClassExpression(tree) {}
visitModuleElement_(element) {
switch (element.type) {
case EXPORT_DECLARATION:
case IMPORT_DECLARATION:
this.visitAny(element);
}
}
visitScript(tree) {
tree.scriptItemList.forEach(this.visitModuleElement_, this);
}
visitModule(tree) {
tree.scriptItemList.forEach(this.visitModuleElement_, this);
}
/**
* @param {ParseTree} tree
* @param {string} message
* @return {void}
*/
reportError(tree, message) {
this.reporter.reportError(tree.location, message);
}
}