src/GroovyCompiler.st
branchjk_new_structure
changeset 1697 0a9d598a6408
parent 1656 c6fee8f3a640
child 1699 73003b9f58fc
--- a/src/GroovyCompiler.st	Tue Sep 04 21:16:50 2012 +0000
+++ b/src/GroovyCompiler.st	Tue Sep 04 23:16:20 2012 +0000
@@ -136,6 +136,17 @@
     ^class.
 
     "Created: / 27-02-2012 / 23:27:35 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
+compile:source in: class notifying: requestor ifFail: block
+
+    requestor class == SourceFileLoader ifTrue:[
+        ^Compiler compile:source in: class notifying: requestor ifFail: block
+    ].
+
+    self error:'Not yet supported'.
+
+    "Created: / 04-09-2012 / 23:56:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !GroovyCompiler methodsFor:'error reporting'!