Comparing version 0.4.15 to 0.4.16
# buble changelog | ||
## 0.4.16 | ||
* Add `ie` and `edge` to support matrix | ||
## 0.4.15 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"name": "buble", | ||
"version": "0.4.15", | ||
"version": "0.4.16", | ||
"description": "The blazing fast, batteries-included ES2015 compiler", | ||
@@ -5,0 +5,0 @@ "main": "dist/buble.umd.js", |
import Node from '../Node.js'; | ||
import reserved from '../../utils/reserved.js'; | ||
import isReference from '../../utils/isReference.js'; | ||
@@ -42,11 +41,3 @@ | ||
} | ||
if ( transforms.reservedProperties && reserved[ this.name ] ) { | ||
const { type, object, property } = this.parent; | ||
if ( type === 'MemberExpression' && this === property && !this.computed ) { | ||
code.overwrite( object.end, this.start, `['` ); | ||
code.insert( this.end, `']` ); | ||
} | ||
} | ||
} | ||
} |
@@ -15,2 +15,3 @@ import ArrayExpression from './ArrayExpression.js'; | ||
import FunctionExpression from './FunctionExpression.js'; | ||
import Identifier from './Identifier.js'; | ||
import ImportSpecifier from './ImportSpecifier.js'; | ||
@@ -20,3 +21,3 @@ import ImportDefaultSpecifier from './ImportDefaultSpecifier.js'; | ||
import LoopStatement from './shared/LoopStatement.js'; | ||
import Identifier from './Identifier.js'; | ||
import MemberExpression from './MemberExpression.js'; | ||
import Property from './Property.js'; | ||
@@ -49,6 +50,7 @@ import ReturnStatement from './ReturnStatement.js'; | ||
FunctionExpression, | ||
Identifier, | ||
ImportSpecifier, | ||
ImportDefaultSpecifier, | ||
Literal, | ||
Identifier, | ||
MemberExpression, | ||
Property, | ||
@@ -55,0 +57,0 @@ ReturnStatement, |
@@ -16,2 +16,12 @@ export const matrix = { | ||
}, | ||
ie: { | ||
8: 0b000000000000000000000000000000, | ||
9: 0b100000000000000000000000000000, | ||
10: 0b100000000000000000000000000000, | ||
11: 0b100000000000000111000001100000 | ||
}, | ||
edge: { | ||
12: 0b111110110111100011010001011101, | ||
13: 0b111111110111100011111001011111 | ||
}, | ||
node: { | ||
@@ -18,0 +28,0 @@ '0.10': 0b100000000101000000000001000000, |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1898849
55
16261