mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
f58b50bea7
swc_ecma_ast: - Split `MemberExpr` into `MemberExpr` and `SuperPropExpr`. - Use `Box<Expr>` for `MemberExpr.obj`. - Use ad-hoc type for `MemberExpr.prop`. - Use ad-hoc type for `SuperPropExpr.prop`. - Use `Callee` instead of `ExprOrSpread` for `CallExpr`. - Simplify types for meta property expressions.
105 lines
1.6 KiB
Plaintext
105 lines
1.6 KiB
Plaintext
warning: Module
|
|
--> $DIR/tests/span/js/stmt/do-while.js:1:1
|
|
|
|
|
1 | / do {
|
|
2 | | foo()
|
|
3 | | } while (bar)
|
|
| |_____________^
|
|
|
|
warning: ModuleItem
|
|
--> $DIR/tests/span/js/stmt/do-while.js:1:1
|
|
|
|
|
1 | / do {
|
|
2 | | foo()
|
|
3 | | } while (bar)
|
|
| |_____________^
|
|
|
|
warning: Stmt
|
|
--> $DIR/tests/span/js/stmt/do-while.js:1:1
|
|
|
|
|
1 | / do {
|
|
2 | | foo()
|
|
3 | | } while (bar)
|
|
| |_____________^
|
|
|
|
warning: DoWhileStmt
|
|
--> $DIR/tests/span/js/stmt/do-while.js:1:1
|
|
|
|
|
1 | / do {
|
|
2 | | foo()
|
|
3 | | } while (bar)
|
|
| |_____________^
|
|
|
|
warning: Expr
|
|
--> $DIR/tests/span/js/stmt/do-while.js:3:10
|
|
|
|
|
3 | } while (bar)
|
|
| ^^^
|
|
|
|
warning: Ident
|
|
--> $DIR/tests/span/js/stmt/do-while.js:3:10
|
|
|
|
|
3 | } while (bar)
|
|
| ^^^
|
|
|
|
warning: Stmt
|
|
--> $DIR/tests/span/js/stmt/do-while.js:1:4
|
|
|
|
|
1 | do {
|
|
| ____^
|
|
2 | | foo()
|
|
3 | | } while (bar)
|
|
| |_^
|
|
|
|
warning: BlockStmt
|
|
--> $DIR/tests/span/js/stmt/do-while.js:1:4
|
|
|
|
|
1 | do {
|
|
| ____^
|
|
2 | | foo()
|
|
3 | | } while (bar)
|
|
| |_^
|
|
|
|
warning: Stmt
|
|
--> $DIR/tests/span/js/stmt/do-while.js:2:5
|
|
|
|
|
2 | foo()
|
|
| ^^^^^
|
|
|
|
warning: ExprStmt
|
|
--> $DIR/tests/span/js/stmt/do-while.js:2:5
|
|
|
|
|
2 | foo()
|
|
| ^^^^^
|
|
|
|
warning: Expr
|
|
--> $DIR/tests/span/js/stmt/do-while.js:2:5
|
|
|
|
|
2 | foo()
|
|
| ^^^^^
|
|
|
|
warning: CallExpr
|
|
--> $DIR/tests/span/js/stmt/do-while.js:2:5
|
|
|
|
|
2 | foo()
|
|
| ^^^^^
|
|
|
|
warning: Callee
|
|
--> $DIR/tests/span/js/stmt/do-while.js:2:5
|
|
|
|
|
2 | foo()
|
|
| ^^^
|
|
|
|
warning: Expr
|
|
--> $DIR/tests/span/js/stmt/do-while.js:2:5
|
|
|
|
|
2 | foo()
|
|
| ^^^
|
|
|
|
warning: Ident
|
|
--> $DIR/tests/span/js/stmt/do-while.js:2:5
|
|
|
|
|
2 | foo()
|
|
| ^^^
|
|
|