diff options
Diffstat (limited to 'js/src/tests/test262/language/module-code/instn-uniq-env-rec-other_FIXTURE.js')
-rw-r--r-- | js/src/tests/test262/language/module-code/instn-uniq-env-rec-other_FIXTURE.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/module-code/instn-uniq-env-rec-other_FIXTURE.js b/js/src/tests/test262/language/module-code/instn-uniq-env-rec-other_FIXTURE.js new file mode 100644 index 0000000000..61cea19ca2 --- /dev/null +++ b/js/src/tests/test262/language/module-code/instn-uniq-env-rec-other_FIXTURE.js @@ -0,0 +1,17 @@ +// |reftest| skip -- not a test file +// Copyright (C) 2016 the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +var first = 4; +let second = 5; +const third = 6; +class fourth {} +function fifth() {} +function* sixth() {} + +var seventh = 7; +let eighth = 8; +const ninth = 9; +class tenth {} +function eleventh() {} +function *twelfth() {} |