use strict 怖い
Perlの話ではない、JavaScriptの話なのである。
あと、タイトルはまんじゅう怖い的な意味なのである
Firefox4.0b10pre に ECMAScript5 の Strict モードが実装されましたーパチパチー
で、自分がはまった罠について書いておくよ。まあ上記ページに書かれていることなんだけどね。
"caller", "callee" in arguments オブジェクト
使うとエラー
(function() { "use strict"; return arguments.callee; })();
TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them
arguments.calee
はイベントリスナ関係で使うことが多いので辛い><