BCompiler.st
changeset 607 118452a23976
parent 603 021722b8a427
child 611 8a0dfadd41f5
--- a/BCompiler.st	Sat Sep 06 20:44:31 1997 +0200
+++ b/BCompiler.st	Sun Sep 07 01:25:50 1997 +0200
@@ -10,7 +10,7 @@
  hereby transferred.
 "
 
-'From Smalltalk/X, Version:3.1.9 on 31-aug-1997 at 8:55:18 pm'                  !
+'From Smalltalk/X, Version:3.1.9 on 7-sep-1997 at 2:21:32 pm'                   !
 
 Parser subclass:#ByteCodeCompiler
 	instanceVariableNames:'codeBytes codeIndex litArray stackDelta extra lineno extraLiteral
@@ -225,7 +225,8 @@
     compiler notifying:requestor.
     silent ifTrue:[
 "/        compiler ignoreErrors.
-        compiler ignoreWarnings
+        compiler ignoreWarnings.
+        compiler warnUndeclared:false.
     ].
 "/    compiler nextToken.
 
@@ -469,7 +470,7 @@
 
     "Created: 29.10.1995 / 19:59:36 / cg"
     "Modified: 24.6.1996 / 12:41:13 / stefan"
-    "Modified: 31.8.1997 / 07:55:41 / cg"
+    "Modified: 7.9.1997 / 02:13:50 / cg"
 !
 
 compile:methodText forClass:classToCompileFor notifying:requestor
@@ -2784,6 +2785,6 @@
 !ByteCodeCompiler class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/Attic/BCompiler.st,v 1.123 1997-09-02 18:29:16 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Attic/BCompiler.st,v 1.124 1997-09-06 23:25:46 cg Exp $'
 ! !
 ByteCodeCompiler initialize!