* feat: parse moduleExportName * feat: add validators * Support string specifier name in commonjs transform * Support string specifier name in export-ns-from * test: add loose testcases * test: add testcases for amd and umd * feat: support systemjs * test: update fixtures fixed in #12110 * add plugin name typings * test: rename test layout * feat: implement under moduleStringNames flag * chore: add plugin syntax module string names * feat: support ModuleExportName as ModuleExportName * test: update test fixtures * fix flow errors * docs: update AST spec * feat: support { "some imports" as "some exports" } * feat: support { "some imports" as "some exports" } in systemjs * test: add test on `import { "foo" }` * Address review comments * add moduleStringNames to missing plugin helpers * Apply suggestions from code review * update test fixtures * Update packages/babel-parser/src/parser/error-message.js * update test fixtures Co-Authored-By: Kai Cataldo <kai@kaicataldo.com> Co-authored-by: Brian Ng <bng412@gmail.com>
69 lines
2.8 KiB
JSON
69 lines
2.8 KiB
JSON
{
|
|
"type": "File",
|
|
"start":0,"end":45,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":45}},
|
|
"errors": [
|
|
"SyntaxError: A string literal cannot be used as an exported binding without `from`.\n- Did you mean `export { \"學而時習之,不亦說乎?\" as '學而時習之,不亦說乎?' } from 'some-module'`? (1:9)",
|
|
"SyntaxError: A string literal cannot be used as an exported binding without `from`.\n- Did you mean `export { \"吾道一以貫之。\" as '忠恕。' } from 'some-module'`? (1:24)"
|
|
],
|
|
"program": {
|
|
"type": "Program",
|
|
"start":0,"end":45,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":45}},
|
|
"sourceType": "module",
|
|
"interpreter": null,
|
|
"body": [
|
|
{
|
|
"type": "ExportNamedDeclaration",
|
|
"start":0,"end":45,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":45}},
|
|
"specifiers": [
|
|
{
|
|
"type": "ExportSpecifier",
|
|
"start":9,"end":22,"loc":{"start":{"line":1,"column":9},"end":{"line":1,"column":22}},
|
|
"local": {
|
|
"type": "StringLiteral",
|
|
"start":9,"end":22,"loc":{"start":{"line":1,"column":9},"end":{"line":1,"column":22}},
|
|
"extra": {
|
|
"rawValue": "學而時習之,不亦說乎?",
|
|
"raw": "\"學而時習之,不亦說乎?\""
|
|
},
|
|
"value": "學而時習之,不亦說乎?"
|
|
},
|
|
"exported": {
|
|
"type": "StringLiteral",
|
|
"start":9,"end":22,"loc":{"start":{"line":1,"column":9},"end":{"line":1,"column":22}},
|
|
"extra": {
|
|
"rawValue": "學而時習之,不亦說乎?",
|
|
"raw": "\"學而時習之,不亦說乎?\""
|
|
},
|
|
"value": "學而時習之,不亦說乎?"
|
|
}
|
|
},
|
|
{
|
|
"type": "ExportSpecifier",
|
|
"start":24,"end":42,"loc":{"start":{"line":1,"column":24},"end":{"line":1,"column":42}},
|
|
"local": {
|
|
"type": "StringLiteral",
|
|
"start":24,"end":33,"loc":{"start":{"line":1,"column":24},"end":{"line":1,"column":33}},
|
|
"extra": {
|
|
"rawValue": "吾道一以貫之。",
|
|
"raw": "\"吾道一以貫之。\""
|
|
},
|
|
"value": "吾道一以貫之。"
|
|
},
|
|
"exported": {
|
|
"type": "StringLiteral",
|
|
"start":37,"end":42,"loc":{"start":{"line":1,"column":37},"end":{"line":1,"column":42}},
|
|
"extra": {
|
|
"rawValue": "忠恕。",
|
|
"raw": "\"忠恕。\""
|
|
},
|
|
"value": "忠恕。"
|
|
}
|
|
}
|
|
],
|
|
"source": null,
|
|
"declaration": null
|
|
}
|
|
],
|
|
"directives": []
|
|
}
|
|
} |