> $ PackageLoader fileInPackage: 'Parser' > $ package := PackageLoader packageAt: 'Parser' > $ test := package test > $ files := package fullPathsOf: (test fileIns) > $ files do: [:file | file fileIn ]. > > Currently the last line will give me exceptions. Now I would just like > to ignore them. So I try > > $ files do: [:file | > [file fileIn ] > on: Exception > do: [:sig | sig return: nil] ] > > Is there a way to completely the exception?
Well, the question is "what exception"? Paolo _______________________________________________ help-smalltalk mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-smalltalk
