aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/test/message
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2013-05-13 03:28:40 +0200
committerBen Noordhuis <info@bnoordhuis.nl>2013-05-13 03:28:40 +0200
commit7ee538ddfe15b2de2e325f55d208b725ec1f8ea3 (patch)
tree8879459751605230b6a2f622c665bc9c01198088 /deps/v8/test/message
parentfc58a5d4bdf0457e6543e8bb1a0a58dd82aac677 (diff)
downloadandroid-node-v8-7ee538ddfe15b2de2e325f55d208b725ec1f8ea3.tar.gz
android-node-v8-7ee538ddfe15b2de2e325f55d208b725ec1f8ea3.tar.bz2
android-node-v8-7ee538ddfe15b2de2e325f55d208b725ec1f8ea3.zip
deps: upgrade v8 to 3.19.0
Diffstat (limited to 'deps/v8/test/message')
-rw-r--r--deps/v8/test/message/isvar.js31
-rw-r--r--deps/v8/test/message/isvar.out4
-rw-r--r--deps/v8/test/message/paren_in_arg_string.js29
-rw-r--r--deps/v8/test/message/paren_in_arg_string.out6
-rw-r--r--deps/v8/test/message/single-function-literal.js32
-rw-r--r--deps/v8/test/message/single-function-literal.out5
6 files changed, 107 insertions, 0 deletions
diff --git a/deps/v8/test/message/isvar.js b/deps/v8/test/message/isvar.js
new file mode 100644
index 0000000000..67793a00b9
--- /dev/null
+++ b/deps/v8/test/message/isvar.js
@@ -0,0 +1,31 @@
+// Copyright 2008 the V8 project authors. All rights reserved.
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are
+// met:
+//
+// * Redistributions of source code must retain the above copyright
+// notice, this list of conditions and the following disclaimer.
+// * Redistributions in binary form must reproduce the above
+// copyright notice, this list of conditions and the following
+// disclaimer in the documentation and/or other materials provided
+// with the distribution.
+// * Neither the name of Google Inc. nor the names of its
+// contributors may be used to endorse or promote products derived
+// from this software without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+// Flags: --allow-natives-syntax
+var x;
+%IS_VAR(x);
+%IS_VAR(x+x); \ No newline at end of file
diff --git a/deps/v8/test/message/isvar.out b/deps/v8/test/message/isvar.out
new file mode 100644
index 0000000000..6d5cca3345
--- /dev/null
+++ b/deps/v8/test/message/isvar.out
@@ -0,0 +1,4 @@
+*%(basename)s:31: SyntaxError: builtin %%IS_VAR: not a variable
+%%IS_VAR(x+x);
+ ^
+SyntaxError: builtin %%IS_VAR: not a variable
diff --git a/deps/v8/test/message/paren_in_arg_string.js b/deps/v8/test/message/paren_in_arg_string.js
new file mode 100644
index 0000000000..bab762a6a4
--- /dev/null
+++ b/deps/v8/test/message/paren_in_arg_string.js
@@ -0,0 +1,29 @@
+// Copyright 2008 the V8 project authors. All rights reserved.
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are
+// met:
+//
+// * Redistributions of source code must retain the above copyright
+// notice, this list of conditions and the following disclaimer.
+// * Redistributions in binary form must reproduce the above
+// copyright notice, this list of conditions and the following
+// disclaimer in the documentation and/or other materials provided
+// with the distribution.
+// * Neither the name of Google Inc. nor the names of its
+// contributors may be used to endorse or promote products derived
+// from this software without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+var paren_in_arg_string_good = new Function('x', 'return;');
+var paren_in_arg_string_bad = new Function(')', 'return;'); \ No newline at end of file
diff --git a/deps/v8/test/message/paren_in_arg_string.out b/deps/v8/test/message/paren_in_arg_string.out
new file mode 100644
index 0000000000..3bc978b965
--- /dev/null
+++ b/deps/v8/test/message/paren_in_arg_string.out
@@ -0,0 +1,6 @@
+*%(basename)s:29: SyntaxError: Function arg string contains parenthesis
+var paren_in_arg_string_bad = new Function(')', 'return;');
+ ^
+SyntaxError: Function arg string contains parenthesis
+ at Function (<anonymous>)
+ at *%(basename)s:29:31 \ No newline at end of file
diff --git a/deps/v8/test/message/single-function-literal.js b/deps/v8/test/message/single-function-literal.js
new file mode 100644
index 0000000000..372063737f
--- /dev/null
+++ b/deps/v8/test/message/single-function-literal.js
@@ -0,0 +1,32 @@
+// Copyright 2008 the V8 project authors. All rights reserved.
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are
+// met:
+//
+// * Redistributions of source code must retain the above copyright
+// notice, this list of conditions and the following disclaimer.
+// * Redistributions in binary form must reproduce the above
+// copyright notice, this list of conditions and the following
+// disclaimer in the documentation and/or other materials provided
+// with the distribution.
+// * Neither the name of Google Inc. nor the names of its
+// contributors may be used to endorse or promote products derived
+// from this software without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+// Flags: --allow-natives-syntax
+var single_function_good = "(function() { return 5; })";
+%CompileString(single_function_good, true);
+var single_function_bad = "(function() { return 5; })();";
+%CompileString(single_function_bad, true); \ No newline at end of file
diff --git a/deps/v8/test/message/single-function-literal.out b/deps/v8/test/message/single-function-literal.out
new file mode 100644
index 0000000000..a6a54b61a5
--- /dev/null
+++ b/deps/v8/test/message/single-function-literal.out
@@ -0,0 +1,5 @@
+undefined:1: SyntaxError: Single function literal required
+(function() { return 5; })();
+ ^
+SyntaxError: Single function literal required
+ at *%(basename)s:32:16 \ No newline at end of file