Skip to content

Commit

Permalink
Bumped the version number
Browse files Browse the repository at this point in the history
  • Loading branch information
maciejhirsz committed Oct 23, 2016
1 parent 4f35b4f commit f06db6d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ratel"
version = "0.5.4"
version = "0.5.5"
authors = ["Maciej Hirsz <maciej.hirsz@gmail.com>"]
license = "MIT/Apache-2.0"
description = "JavaScript transpiler in Rust"
Expand Down
5 changes: 5 additions & 0 deletions core/tests/codegen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ fn convert_let_to_var_in_block() {
assert_compile!(program, expected);
}

#[test]
fn regex() {
assert_compile!("/foo/gi.test();", "/foo/gi.test();");
}

#[test]
fn template_strings_plain() {
assert_compile!("`foobar`;", r#""foobar";"#);
Expand Down

0 comments on commit f06db6d

Please sign in to comment.