michael@0: // Copyright 2009 the Sputnik authors. All rights reserved. michael@0: // This code is governed by the BSD license found in the LICENSE file. michael@0: michael@0: /** michael@0: * Unicode symbols in function name are allowed michael@0: * michael@0: * @path ch13/13.0/S13_A14.js michael@0: * @description Defining function name with unicode symbols michael@0: */ michael@0: michael@0: eval("function __func\u0041(__arg){return __arg;};"); michael@0: michael@0: ////////////////////////////////////////////////////////////////////////////// michael@0: //CHECK#1 michael@0: if (typeof __funcA !== "function") { michael@0: $ERROR('#1: unicode symbols in function name are allowed'); michael@0: } michael@0: // michael@0: ////////////////////////////////////////////////////////////////////////////// michael@0: