diff -r 837963c607a6 -r 09afcf28ed60 compiler/PEGFsaTransition.st --- a/compiler/PEGFsaTransition.st Tue Aug 18 22:16:18 2015 +0100 +++ b/compiler/PEGFsaTransition.st Tue Aug 18 22:46:10 2015 +0100 @@ -143,10 +143,12 @@ 1 to: 255 do: [ :index | disjunction at: index - put: ((self characterSet at: index) xor: [transition characterSet at: index]) + put: ((self characterSet at: index) xor: (transition characterSet at: index)) ]. ^ disjunction + + "Modified: / 18-08-2015 / 22:41:06 / Jan Vrany " ! intersection: transition