-
Are there any plans in the near future to implement classes and inheritance in Rhino? And other OO related features described here: https://medium.com/ecmascript-2015/es6-classes-and-inheritance-60780…
-
Follow-up of #1411
Likely depends on #1565
-
Big topic, see [MDN Modules](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules) for some primer
Depends on [Support ES5 this handling in strict mode](https://github.com/mozilla/…
-
While Rhino has a `const` implementation, it is based on a draft EcmaScript specification that precedes the official ECMAScript 2015 specification in which `const` got introduced. As such, the current…
-
I recommend translating the syntax to ES6. This way the code is way more readable, maintainable and makes use of some new features like Maps (for localisation), module imports and exports (for code sp…
-
Adding
```groovy
js {
browser {
compilerOptions {
target = 'es2015'
}
}
}
```
to a module with the Zipline plugin causes
```
Caused by: java.util.NoSuchElementException: …
-
ES2015 standardized the behavior of the function.name property. Rhino doesn't comply.
See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/name, https://2a…
-
### With what library do you have an issue?
native-federation
### Reproduction of the bug/regression with instructions
Hello, we’ve recently started using Native Federation to build a Micro F…
vrady updated
1 month ago
-
I’m not really qualified to discuss CommonJS vs ES2015 modules but I recently used a few scijs libs in an ES2015 module with Rollup, and ran into some surprises.
Rollup can’t find the `*,*s,*eq,*eq` …
-
We can autogenerate Modules-Wrapper from ES2015 syntax.
### For simple cases (i.e. `dom.js`):
``` js
modules.define('dom', ['jquery'], function(provide, $) {
provide({ /* ... */ });
});
```
``` …
veged updated
8 years ago