Skip to content

Commit

Permalink
CHANGELOG for issue boa-dev#113 fix + add tests/js/test.js to gitignore.
Browse files Browse the repository at this point in the history
  • Loading branch information
pop committed Oct 3, 2019
1 parent 95827a4 commit 2c44735
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,6 @@ node_modules
.DS_Store
yarn-error.log
.vscode/settings.json

# tests/js/test.js is used for testing changes locally
test/js/test.js
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ Feature enhancements:
- [FEATURE #119](https://github.com/jasonwilliams/boa/issues/119):
Introduce realm struct to hold realm context and global object

Bug fixes:

- [BUG #113](https://github.com/jasonwilliams/boa/issues/113):
Unassigned variables have default of undefined (@pop)

# 0.4.0 (2019-09-25)

v0.4.0 brings quite a big release. The biggest feature to land is the support of regular expressions.
Expand Down
4 changes: 4 additions & 0 deletions tests/js/test.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
///
// Use this file to test your changes to boa.
///

let a = Boolean(0);
typeof a;

0 comments on commit 2c44735

Please sign in to comment.