i'm a terrible spellerer #777

This commit is contained in:
Sebastian McKenzie
2015-02-18 11:24:51 +11:00
parent 2541dcf960
commit 7e8cd2ca8a
4 changed files with 8 additions and 8 deletions

View File

@@ -87,7 +87,7 @@ File.validOptions = [
"experimental",
"resolveModuleSource",
"externalHelpers",
"auxilaryComment",
"auxiliaryComment",
// these are used by plugins
"ignore",
@@ -302,8 +302,8 @@ File.prototype.isConsequenceExpressionStatement = function (node) {
return t.isExpressionStatement(node) && this.lastStatements.indexOf(node) >= 0;
};
File.prototype.attachAuxilaryComment = function (node) {
var comment = this.opts.auxilaryComment;
File.prototype.attachAuxiliaryComment = function (node) {
var comment = this.opts.auxiliaryComment;
if (comment) {
node.leadingComments = node.leadingComments || [];
node.leadingComments.push({

View File

@@ -20,7 +20,7 @@ exports.Program = function (node, parent, scope, file) {
var declarNode = t.variableDeclarator(declar.id, declar.init);
if (declar.init) {
node.body.unshift(file.attachAuxilaryComment(t.variableDeclaration(kind, [declarNode])));
node.body.unshift(file.attachAuxiliaryComment(t.variableDeclaration(kind, [declarNode])));
} else {
kinds[kind] = kinds[kind] || [];
kinds[kind].push(declarNode);
@@ -28,7 +28,7 @@ exports.Program = function (node, parent, scope, file) {
}
for (kind in kinds) {
node.body.unshift(file.attachAuxilaryComment(t.variableDeclaration(kind, kinds[kind])));
node.body.unshift(file.attachAuxiliaryComment(t.variableDeclaration(kind, kinds[kind])));
}
});