diff -r 666372dbe307 -r a949c4fe44df compiler/tests/PPCTokenizingCodeGeneratorTest.st --- a/compiler/tests/PPCTokenizingCodeGeneratorTest.st Wed Aug 26 23:34:48 2015 +0100 +++ b/compiler/tests/PPCTokenizingCodeGeneratorTest.st Sat Aug 29 07:56:14 2015 +0100 @@ -42,19 +42,18 @@ self cleanClass. configuration := PPCPluggableConfiguration on: [ :_self | - _self cacheFirstFollow. - _self buildParserClazz. - _self unmarkConsumeTokensForInline. - _self createFSAs. - _self buildScannerTokens. - _self buildScannerScans. + _self runPass: PPCCacheFirstFollowPass. + _self runPass: PPCTokenizingCodeGenerator. + _self runPass: PPCFSAVisitor. + _self runPass: PPCTokenCodeGenerator. + _self runPass: PPCScannerCodeGenerator. _self generateScanner. _self generateParser. ] base: PPCConfiguration tokenizing. configuration options: options. - "Modified: / 24-08-2015 / 23:40:08 / Jan Vrany " + "Modified: / 03-09-2015 / 22:34:22 / Jan Vrany " ! tearDown