~ubuntu-branches/ubuntu/edgy/monodevelop/edgy

« back to all changes in this revision

Viewing changes to Extras/VBNetBinding/SharpRefactoryVB/src/Parser/AST/Statements/BlockStatement.cs

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-08-18 00:51:23 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060818005123-5iit07y0j7wjg55f
Tags: 0.11+svn20060818-0ubuntu1
* New SVN snapshot
  + Works with Gtk# 2.9.0
* debian/control:
  + Updated Build-Depends
* debian/patches/use_nunit2.2.dpatch,
  debian/patches/use_real_libs.dpatch:
  + Updated
* debian/patches/versioncontrol_buildfix.dpatch:
  + Fix build failure in the version control addin

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
using System;
2
 
using System.Collections;
3
 
 
4
 
using ICSharpCode.SharpRefactory.Parser.VB;
5
 
 
6
 
namespace ICSharpCode.SharpRefactory.Parser.AST.VB
7
 
{
8
 
        public class BlockStatement : Statement
9
 
        {
10
 
                public override object AcceptVisitor(IASTVisitor visitor, object data)
11
 
                {
12
 
                        return visitor.Visit(this, data);
13
 
                }
14
 
                
15
 
                public override string ToString()
16
 
                {
17
 
                        return String.Format("[BlockStatement: Children={0}]", 
18
 
                                             GetCollectionString(base.Children));
19
 
                }
20
 
        }
21
 
}