From 2bc31de69d4e89c4f92b224a1d9629c5c4e6de04 Mon Sep 17 00:00:00 2001 From: Francisco Ryan Tolmasky I Date: Wed, 27 Jan 2010 04:01:11 -0800 Subject: [PATCH] Removed alerts. Reviewd by me. --- Objective-J/Runtime.js | 4 ++-- Objective-J/Scope.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Objective-J/Runtime.js b/Objective-J/Runtime.js index 51af4d3d8..f52da4c0c 100644 --- a/Objective-J/Runtime.js +++ b/Objective-J/Runtime.js @@ -370,9 +370,9 @@ if (new prototype_bug().member) { var fast_class_createInstance = class_createInstance; -alert('THE BUG'); + class_createInstance = function(/*Class*/ aClass) -{alert("theee bugggg"); +{ var object = fast_class_createInstance(aClass); if (object) diff --git a/Objective-J/Scope.js b/Objective-J/Scope.js index 980074252..da119347e 100644 --- a/Objective-J/Scope.js +++ b/Objective-J/Scope.js @@ -17,7 +17,7 @@ function cacheExportedNamesAndValues() cachedExportedNames.push(exportName); cachedExportedValues.push(exports[exportName]); } -alert(cachedExportedNames); + exportedNames = function() { return cachedExportedNames;