UNPKG
@philpl/buble
Version:
latest (0.19.7)
0.19.7
The blazing fast, batteries-included ES2015 compiler
github.com/bublejs/buble
bublejs/buble
@philpl/buble
/
src
/
program
/
types
/
JSXExpressionContainer.js
11 lines
(8 loc)
•
261 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
Node
from
'../Node.js'
;
export
default
class
JSXExpressionContainer
extends
Node
{
transpile
(
code, transforms
) { code.
remove
(
this
.
start
,
this
.
expression
.
start
); code.
remove
(
this
.
expression
.
end
,
this
.
end
);
super
.
transpile
(code, transforms); } }