⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 construct-constructors.as

📁 Swfdec is a decoder/renderer for Macromedia Flash animations. The decoding and rendering engine is
💻 AS
字号:
// makeswf -v 7 -s 200x150 -r 1 -o construct-constructors.swf construct-constructors.astrace ("Check that [] and {} don't call their constructors");_global.Array = function () {  trace ("  Array");};_global.Object = function () {  trace ("  Object");};trace ("new Array ()");x = new Array ();trace ("[]");x = [];trace ("new Object ()");x = new Object ();trace ("{}");x = {};loadMovie ("FSCommand:quit", "");

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -