blob: 178c715e0d4d441d4fe3a62b6fe8f2ea6cc96e80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
* Contributor: Blake Kaplan
*/
//-----------------------------------------------------------------------------
var BUGNUMBER = 306794;
var summary = 'Do not assert: parsing foo getter';
var actual = 'No Assertion';
var expect = 'No Assertion';
printBugNumber(BUGNUMBER);
printStatus (summary);
try
{
eval('getter\n');
}
catch(e)
{
}
reportCompare(expect, actual, summary);
|