Starting out the import statement

This commit is contained in:
Fábio Santos
2016-01-29 20:47:49 +00:00
committed by Richard van Velzen
parent 6780d0906c
commit 0465bd270d
4 changed files with 39 additions and 2 deletions

View File

@@ -305,6 +305,14 @@ number_literals: {
}
}
import_statement: {
input: {
import "mod-name";
import "module2";
}
expect_exact: "import\"mod-name\";import\"module2\";"
}
// Fabio: My patches accidentally caused a crash whenever
// there's an extraneous set of parens around an object.
regression_cannot_destructure: {