X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem%2FSystem.CodeDom%2FCodeConditionStatement.cs;h=d8cea1f59e095a0e794d0b4e3881ba726c91921c;hb=c8c1a778e800db1dd7bc5326e148a5a1921f4d03;hp=1bf063395d17dbc1f18482bf36e408c5c19282e4;hpb=f99ce750ee781a2584e849a0264300fa4d99aaaa;p=mono.git diff --git a/mcs/class/System/System.CodeDom/CodeConditionStatement.cs b/mcs/class/System/System.CodeDom/CodeConditionStatement.cs index 1bf063395d1..d8cea1f59e0 100644 --- a/mcs/class/System/System.CodeDom/CodeConditionStatement.cs +++ b/mcs/class/System/System.CodeDom/CodeConditionStatement.cs @@ -94,5 +94,13 @@ namespace System.CodeDom return trueStatements; } } + + // + // ICodeDomVisitor method + // + internal override void Accept (ICodeDomVisitor visitor) + { + visitor.Visit (this); + } } }