# HG changeset patch # User Jan Vrany # Date 1357824122 -3600 # Node ID 57b4439a799869fc9d0a6dc8d015b3ebdfd0a03f # Parent 8e5e20ea96d461611574e17063372fc5e12ceb27 Added PPCompositeParserGenerator & PPParserVisitor diff -r 8e5e20ea96d4 -r 57b4439a7998 devtools/PPDebuggingParser.st --- a/devtools/PPDebuggingParser.st Thu Jan 10 13:29:16 2013 +0100 +++ b/devtools/PPDebuggingParser.st Thu Jan 10 14:22:02 2013 +0100 @@ -48,14 +48,25 @@ "Modified: / 12-03-2012 / 16:41:29 / Jan Vrany " ! ! +!PPDebuggingParser methodsFor:'visiting'! + +acceptVisitor:aVisitor + "Double dispatch back to the visitor, passing my type encoded in + the selector (visitor pattern)" + + "stub code automatically generated - please change if required" + + ^ aVisitor visitPPDebuggingParser:self +! ! + !PPDebuggingParser class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/goodies/petitparser/devtools/PPDebuggingParser.st,v 1.1 2012-05-05 14:49:17 vrany Exp $' + ^ '$Header: /cvs/stx/stx/goodies/petitparser/devtools/PPDebuggingParser.st,v 1.2 2013-01-10 13:22:02 vrany Exp $' ! version_CVS - ^ '$Header: /cvs/stx/stx/goodies/petitparser/devtools/PPDebuggingParser.st,v 1.1 2012-05-05 14:49:17 vrany Exp $' + ^ '$Header: /cvs/stx/stx/goodies/petitparser/devtools/PPDebuggingParser.st,v 1.2 2013-01-10 13:22:02 vrany Exp $' ! version_SVN