ExecutableFunction.st
branchjv
changeset 21024 8734987eb5c7
parent 20579 9add81aadb7a
parent 20956 d8ed7f775615
child 23107 40173e082cbc
--- a/ExecutableFunction.st	Wed Oct 26 23:35:39 2016 +0100
+++ b/ExecutableFunction.st	Fri Nov 18 20:48:04 2016 +0000
@@ -45,7 +45,7 @@
     and whatever there might be in the future.
 
     Instances of ExecutableCode are not meant to be created by user code -
-    the compilers create instances of Method & Block, while compiling.
+    the compilers create instances of subclasses, such as Method & Block
     (the VM would not even know what to do with such an instance, and triggered
      and exception, if ever encountered during block/method execution).
 
@@ -203,12 +203,12 @@
 
 category
     "return the category of this codeObject.
-     Return nil here, to alow alien codeObjects to be handled by the
-     browsers."
+     Return nil here, to allow alien codeObjects to be handled by the browsers."
 
     ^ nil
 
-    "Created: 16.4.1996 / 16:31:15 / cg"
+    "Created: / 16-04-1996 / 16:31:15 / cg"
+    "Modified (comment): / 12-11-2016 / 11:46:00 / cg"
 !
 
 hasCanvasResource
@@ -298,12 +298,12 @@
 
 isInvalid
     "return true, if this codeObject is invalidated.
-     Return false here, to alow alien codeObjects to be handled by the
-     browsers."
+     Return false here, to allow alien codeObjects to be handled by the browsers."
 
     ^ false
 
-    "Created: 16.4.1996 / 16:31:42 / cg"
+    "Created: / 16-04-1996 / 16:31:42 / cg"
+    "Modified (comment): / 12-11-2016 / 11:46:07 / cg"
 !
 
 isJavaMethod
@@ -386,7 +386,7 @@
 referencesGlobal:aGlobalSymbol
     "return true, if this method references the global
      bound to aGlobalSymbol.
-     Return false (we dont know) here, to allow alien code objects to be
+     Return false (we don't know) here, to allow alien code objects to be
      handled by the browsers."
 
     ^ false
@@ -397,7 +397,7 @@
 referencesGlobalMatching:aMatchPattern
     "return true, if this method references a global
      whose name matches aMatchPattern.
-     Return false (we dont know) here, to allow alien code objects to be
+     Return false (we don't know) here, to allow alien code objects to be
      handled by the browsers."
 
     ^ false
@@ -407,7 +407,7 @@
 
 referencesLiteral:aLiteral
     "return true, if this executable references the literal directly (i.e. a flat search).
-     Return false (we dont know) here, to allow alien code objects to be
+     Return false (we don't know) here, to allow alien code objects to be
      handled by the browsers."
 
     ^ false
@@ -428,7 +428,7 @@
 refersToLiteralMatching:aMatchPattern
     "return true if the receiver or recursively any array element in the
      receiver is symbolic and matches aMatchPattern (i.e. a deep search).
-     Return false (we dont know) here, to allow alien code objects to be
+     Return false (we don't know) here, to allow alien code objects to be
      handled by the browsers."
 
     ^ false