sundar@1512: /* sundar@1512: * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. sundar@1512: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. sundar@1512: * sundar@1512: * This code is free software; you can redistribute it and/or modify it sundar@1512: * under the terms of the GNU General Public License version 2 only, as sundar@1512: * published by the Free Software Foundation. sundar@1512: * sundar@1512: * This code is distributed in the hope that it will be useful, but WITHOUT sundar@1512: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or sundar@1512: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License sundar@1512: * version 2 for more details (a copy is included in the LICENSE file that sundar@1512: * accompanied this code). sundar@1512: * sundar@1512: * You should have received a copy of the GNU General Public License version sundar@1512: * 2 along with this work; if not, write to the Free Software Foundation, sundar@1512: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. sundar@1512: * sundar@1512: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA sundar@1512: * or visit www.oracle.com if you need additional information or have any sundar@1512: * questions. sundar@1512: */ sundar@1512: sundar@1512: /** sundar@1512: * JDK-8073733: TypeError messages with "call" and "new" could be improved sundar@1512: * sundar@1512: * @test sundar@1512: * @run sundar@1512: */ sundar@1512: sundar@1512: var func = undefined; sundar@1512: try { sundar@1512: func(); sundar@1512: } catch (e) { sundar@1512: print(e); sundar@1512: } sundar@1512: sundar@1512: var obj = {}; sundar@1512: try { sundar@1512: obj.foo(); sundar@1512: } catch (e) { sundar@1512: print(e); sundar@1512: } sundar@1512: sundar@1512: try { sundar@1512: new func(); sundar@1512: } catch (e) { sundar@1512: print(e); sundar@1512: }