blob: 178c715e0d4d441d4fe3a62b6fe8f2ea6cc96e80 [file] [log] [blame]
/* -*- 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);