sundar@383: /* sundar@383: * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. sundar@383: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. attila@962: * sundar@383: * This code is free software; you can redistribute it and/or modify it sundar@383: * under the terms of the GNU General Public License version 2 only, as sundar@383: * published by the Free Software Foundation. attila@962: * sundar@383: * This code is distributed in the hope that it will be useful, but WITHOUT sundar@383: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or sundar@383: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License sundar@383: * version 2 for more details (a copy is included in the LICENSE file that sundar@383: * accompanied this code). attila@962: * sundar@383: * You should have received a copy of the GNU General Public License version sundar@383: * 2 along with this work; if not, write to the Free Software Foundation, sundar@383: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. attila@962: * sundar@383: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA sundar@383: * or visit www.oracle.com if you need additional information or have any sundar@383: * questions. sundar@383: */ sundar@383: sundar@383: /** attila@962: * JDK-8019226: line number not generated for first statement if it is on the same function declaration line sundar@383: * sundar@383: * @test sundar@383: * @run sundar@383: */ sundar@383: sundar@383: function func1() { func2() } sundar@383: sundar@386: function func2() { throw new Error("failed!") } sundar@383: sundar@383: try { sundar@383: func1() sundar@383: } catch (e) { sundar@383: print(e.stack.replace(/\\/g, '/')) sundar@383: }