mirror of https://github.com/boa-dev/boa.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.1 KiB
45 lines
1.1 KiB
5 years ago
|
---
|
||
|
name: "\U0001F680 Feature request"
|
||
|
about: Suggest an idea for this project
|
||
|
title: ''
|
||
|
labels: enhancement
|
||
|
assignees: ''
|
||
|
|
||
|
---
|
||
|
|
||
|
<!--
|
||
|
Thank you for adding a feature request to Boa! As this is an experimental JavaScript engine, there will probably be many ECMAScript features left to implement. In order to understand the feature request as best as possible, please fill the following template. Feel free to add or remove sections as needed.
|
||
|
-->
|
||
|
|
||
|
**ECMASCript feature**
|
||
|
Explain the ECMAScript feature that you'd like to see implemented.
|
||
|
|
||
|
<!-- E.g.:
|
||
|
I would like to see `switch` statement parsing and execution implemented. [ECMAScript specification][spec].
|
||
|
|
||
|
[spec]: https://www.ecma-international.org/ecma-262/10.0/index.html#sec-switch-statement
|
||
|
-->
|
||
|
|
||
|
**Example code**
|
||
|
Give a code example that should work after the implementation of this feature.
|
||
|
|
||
|
<!-- E.g.:
|
||
|
This code should now work and give the expected result:
|
||
|
```javascript
|
||
|
let a = "hello";
|
||
|
let b;
|
||
|
switch (a) {
|
||
|
case 'hello':
|
||
|
b = 'world';
|
||
|
break;
|
||
|
case 'world':
|
||
|
b = 'hello';
|
||
|
break;
|
||
|
default:
|
||
|
b = 'hello world';
|
||
|
}
|
||
|
b;
|
||
|
```
|
||
|
The expected output is `world`.
|
||
|
-->
|