This repository has been archived by the owner on Aug 18, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a861223
commit 5dd961f
Showing
7 changed files
with
70 additions
and
105 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
"use strict"; | ||
|
||
module.exports = function(ast) { | ||
ast.type = "Program"; | ||
ast.sourceType = ast.program.sourceType; | ||
ast.directives = ast.program.directives; | ||
ast.body = ast.program.body; | ||
delete ast.program; | ||
|
||
if (ast.comments.length) { | ||
const lastComment = ast.comments[ast.comments.length - 1]; | ||
|
||
if (!ast.tokens.length) { | ||
// if no tokens, the program starts at the end of the last comment | ||
ast.start = lastComment.end; | ||
ast.loc.start.line = lastComment.loc.end.line; | ||
ast.loc.start.column = lastComment.loc.end.column; | ||
} else { | ||
const lastToken = ast.tokens[ast.tokens.length - 1]; | ||
|
||
if (lastComment.end > lastToken.end) { | ||
// If there is a comment after the last token, the program ends at the | ||
// last token and not the comment | ||
ast.range[1] = lastToken.end; | ||
ast.loc.end.line = lastToken.loc.end.line; | ||
ast.loc.end.column = lastToken.loc.end.column; | ||
} | ||
} | ||
} else { | ||
if (!ast.tokens.length) { | ||
ast.loc.start.line = 1; | ||
ast.loc.end.line = 1; | ||
} | ||
} | ||
|
||
if (ast.body && ast.body.length > 0) { | ||
ast.loc.start.line = ast.body[0].loc.start.line; | ||
ast.range[0] = ast.body[0].start; | ||
} | ||
}; |
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
lib/babylon-to-espree/toTokens.js → lib/babylon-to-espree/convertTokens.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
"use strict"; | ||
|
||
const convertTemplateType = require("./convertTemplateType"); | ||
const toToken = require("./toToken"); | ||
const convertToken = require("./convertToken"); | ||
|
||
module.exports = function(tokens, tt, code) { | ||
return convertTemplateType(tokens, tt) | ||
.filter(t => t.type !== "CommentLine" && t.type !== "CommentBlock") | ||
.map(t => toToken(t, tt, code)); | ||
.map(t => convertToken(t, tt, code)); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,11 @@ | ||
"use strict"; | ||
|
||
const attachComments = require("./attachComments"); | ||
const convertTokens = require("./convertTokens"); | ||
const convertComments = require("./convertComments"); | ||
const toTokens = require("./toTokens"); | ||
const toAST = require("./toAST"); | ||
const convertAST = require("./convertAST"); | ||
|
||
module.exports = function(ast, traverse, tt, code) { | ||
// convert tokens | ||
ast.tokens = toTokens(ast.tokens, tt, code); | ||
|
||
// add comments | ||
ast.tokens = convertTokens(ast.tokens, tt, code); | ||
convertComments(ast.comments); | ||
|
||
// transform esprima and acorn divergent nodes | ||
toAST(ast, traverse, code); | ||
|
||
// ast.program.tokens = ast.tokens; | ||
// ast.program.comments = ast.comments; | ||
// ast = ast.program; | ||
|
||
// remove File | ||
ast.type = "Program"; | ||
ast.sourceType = ast.program.sourceType; | ||
ast.directives = ast.program.directives; | ||
ast.body = ast.program.body; | ||
delete ast.program; | ||
|
||
attachComments(ast, ast.comments, ast.tokens); | ||
convertAST(ast, traverse, code); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters