9badaeffae0403a3a94ceedfe6bb5231c5295d5c
[platform/framework/web/crosswalk-tizen.git] /
1 function foo(a) {
2   throw new Error('invalid args')
3   function b() {
4     throw Error('no new');
5   }
6 }
7
8 throw "this is an anti-pattern, never throw string, only Error objects";
9