mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 13:51:19 +03:00
Async generator (#613)
Change parser to accept async generator. Closes #612.
This commit is contained in:
parent
480015d407
commit
d06eeed352
@ -760,9 +760,9 @@ impl<'a, I: Tokens> Parser<'a, I> {
|
||||
let is_generator = {
|
||||
let start = cur_pos!();
|
||||
if eat!('*') {
|
||||
if is_async {
|
||||
syntax_error!(span!(start), SyntaxError::AsyncGenerator {});
|
||||
}
|
||||
// if is_async {
|
||||
// syntax_error!(span!(start), SyntaxError::AsyncGenerator {});
|
||||
// }
|
||||
true
|
||||
} else {
|
||||
false
|
||||
|
@ -0,0 +1 @@
|
||||
async function* agf() {}
|
@ -0,0 +1,46 @@
|
||||
{
|
||||
"type": "Module",
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 24,
|
||||
"ctxt": 0
|
||||
},
|
||||
"body": [
|
||||
{
|
||||
"type": "FunctionDeclaration",
|
||||
"identifier": {
|
||||
"type": "Identifier",
|
||||
"span": {
|
||||
"start": 16,
|
||||
"end": 19,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "agf",
|
||||
"typeAnnotation": null,
|
||||
"optional": false
|
||||
},
|
||||
"declare": false,
|
||||
"params": [],
|
||||
"decorators": [],
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 24,
|
||||
"ctxt": 0
|
||||
},
|
||||
"body": {
|
||||
"type": "BlockStatement",
|
||||
"span": {
|
||||
"start": 22,
|
||||
"end": 24,
|
||||
"ctxt": 0
|
||||
},
|
||||
"stmts": []
|
||||
},
|
||||
"generator": true,
|
||||
"async": true,
|
||||
"typeParameters": null,
|
||||
"returnType": null
|
||||
}
|
||||
],
|
||||
"interpreter": null
|
||||
}
|
@ -0,0 +1 @@
|
||||
async function* agf() {}
|
@ -0,0 +1,46 @@
|
||||
{
|
||||
"type": "Module",
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 24,
|
||||
"ctxt": 0
|
||||
},
|
||||
"body": [
|
||||
{
|
||||
"type": "FunctionDeclaration",
|
||||
"identifier": {
|
||||
"type": "Identifier",
|
||||
"span": {
|
||||
"start": 16,
|
||||
"end": 19,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "agf",
|
||||
"typeAnnotation": null,
|
||||
"optional": false
|
||||
},
|
||||
"declare": false,
|
||||
"params": [],
|
||||
"decorators": [],
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 24,
|
||||
"ctxt": 0
|
||||
},
|
||||
"body": {
|
||||
"type": "BlockStatement",
|
||||
"span": {
|
||||
"start": 22,
|
||||
"end": 24,
|
||||
"ctxt": 0
|
||||
},
|
||||
"stmts": []
|
||||
},
|
||||
"generator": true,
|
||||
"async": true,
|
||||
"typeParameters": null,
|
||||
"returnType": null
|
||||
}
|
||||
],
|
||||
"interpreter": null
|
||||
}
|
Loading…
Reference in New Issue
Block a user