~ubuntu-branches/ubuntu/feisty/monodevelop/feisty

« back to all changes in this revision

Viewing changes to Core/src/MonoDevelop.Projects/MonoDevelop.Projects.Parser/LocalVariable.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:
37
37
                string name;
38
38
                string documentation;
39
39
                IReturnType returnType;
 
40
                IRegion region;
40
41
                
41
 
                public LocalVariable (string name, IReturnType type, string documentation)
 
42
                public LocalVariable (string name, IReturnType type, string documentation, IRegion region)
42
43
                {
43
44
                        this.name = name;
44
45
                        this.documentation = documentation;
45
46
                        this.returnType = type;
 
47
                        this.region = region;
46
48
                }
47
49
                
48
50
                public string Name {
52
54
                public IReturnType ReturnType {
53
55
                        get { return returnType; }
54
56
                }
 
57
                
 
58
                public IRegion Region {
 
59
                        get { return region; }
 
60
                }
55
61
 
56
62
                public string Documentation {
57
63
                        get { return documentation; }