~ubuntu-branches/ubuntu/saucy/mozjs17/saucy

« back to all changes in this revision

Viewing changes to js/src/tests/ecma_2/Exceptions/function-001.js

  • Committer: Package Import Robot
  • Author(s): Rico Tzschichholz
  • Date: 2013-05-25 12:24:23 UTC
  • Revision ID: package-import@ubuntu.com-20130525122423-zmxucrhtensw90xy
Tags: upstream-17.0.0
ImportĀ upstreamĀ versionĀ 17.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 
2
/* This Source Code Form is subject to the terms of the Mozilla Public
 
3
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 
4
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 
5
 
 
6
 
 
7
/**
 
8
 *  File Name:          boolean-001.js
 
9
 *  Description:
 
10
 *
 
11
 *  http://scopus.mcom.com/bugsplat/show_bug.cgi?id=99232
 
12
 *
 
13
 *  eval("function f(){}function g(){}") at top level is an error for JS1.2
 
14
 *     and above (missing ; between named function expressions), but declares f
 
15
 *     and g as functions below 1.2.
 
16
 *
 
17
 * Fails to produce error regardless of version:
 
18
 * js> version(100)
 
19
 * 120
 
20
 * js> eval("function f(){}function g(){}")
 
21
 * js> version(120);
 
22
 * 100
 
23
 * js> eval("function f(){}function g(){}")
 
24
 * js>
 
25
 *  Author:             christine@netscape.com
 
26
 *  Date:               11 August 1998
 
27
 */
 
28
var SECTION = "function-001.js";
 
29
var VERSION = "JS_12";
 
30
var TITLE   = "functions not separated by semicolons are errors in version 120 and higher";
 
31
var BUGNUMBER="10278";
 
32
 
 
33
startTest();
 
34
writeHeaderToLog( SECTION + " "+ TITLE);
 
35
 
 
36
var result = "pass";
 
37
var exception = "no exception thrown";
 
38
 
 
39
try {
 
40
  eval("function f(){}function g(){}");
 
41
} catch ( e ) {
 
42
  result = "fail";
 
43
  exception = e.toString();
 
44
}
 
45
 
 
46
new TestCase(
 
47
  SECTION,
 
48
  "eval(\"function f(){}function g(){}\") (threw "+exception,
 
49
  "pass",
 
50
  result );
 
51
 
 
52
test();
 
53