diff -r a949c4fe44df -r a8feb0f47574 compiler/PPCCompilationOptions.st --- a/compiler/PPCCompilationOptions.st Sat Aug 29 07:56:14 2015 +0100 +++ b/compiler/PPCCompilationOptions.st Fri Sep 04 14:06:56 2015 +0100 @@ -93,7 +93,9 @@ ! tokenize - ^ self at: #tokenize ifAbsent: true + ^ self at: #tokenize ifAbsent: false + + "Modified: / 04-09-2015 / 15:53:17 / Jan Vrany " ! tokenize: aBoolean @@ -114,14 +116,6 @@ !PPCCompilationOptions methodsFor:'options - undocumented (do not use)'! -cacheFirstFollow - ^ self at: #cacheFirstFollow ifAbsent: true -! - -cacheFirstFollow: value - self set: #cacheFirstFollow to: value. -! - debug ^ self at: #debug ifAbsent: true ! @@ -146,18 +140,10 @@ self set: #guards to: value. ! -inline - ^ self at: #inline ifAbsent: true -! - -inline: value - self set: #inline to: value. -! - parserSuperclass ^ self at: #parserSuperclass ifAbsent: nil - "Modified: / 01-09-2015 / 08:45:25 / Jan Vrany " + "Modified: / 04-09-2015 / 16:06:47 / Jan Vrany " ! parserSuperclass: value @@ -178,14 +164,6 @@ scannerSuperclass: value self set: #scannerSuperclass to: value. -! - -specialize - ^ self at: #specialize ifAbsent: true -! - -specialize: value - self set: #specialize to: value. ! ! !PPCCompilationOptions methodsFor:'private'!