1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
#region license
// Copyright (c) 2004-2005, Daniel Grunwald (daniel@danielgrunwald.de)
// Copyright (c) 2005, Peter Johanson (latexer@gentoo.org)
// All rights reserved.
//
// The BooBinding.Parser code is originally that of Daniel Grunwald
// (daniel@danielgrunwald.de) from the SharpDevelop BooBinding. The code has
// been imported here, and modified, including, but not limited to, changes
// to function with MonoDevelop, additions, refactorings, etc.
//
// BooBinding is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// BooBinding is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with BooBinding; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
/*
namespace BooBinding.Parser
import System
import MonoDevelop.Projects.Dom
import Boo.Lang.Compiler.Ast as AST
class Constructor(BooDefaultMethod):
def constructor(m as ModifierEnum, region as IRegion, bodyRegion as IRegion):
Name = 'ctor'
self.region = region
self.bodyRegion = bodyRegion
modifiers = m
class Destructor(BooDefaultMethod):
def constructor(className as string, m as ModifierEnum, region as IRegion, bodyRegion as IRegion):
Name = '~' + className
self.region = region
self.bodyRegion = bodyRegion
modifiers = m
class BooDefaultMethod(DefaultMethod):
[Property(Node)]
_node as AST.Method
def AddModifier(m as ModifierEnum):
modifiers = modifiers | m
class Field(DefaultField):
def AddModifier(m as ModifierEnum):
modifiers = modifiers | m
def constructor(rtype as IReturnType, name as string, m as ModifierEnum, region as IRegion):
self.returnType = rtype
self.Name = name
self.region = region
modifiers = m
def SetModifiers(m as ModifierEnum):
modifiers = m
class Indexer(DefaultIndexer):
def AddModifier(m as ModifierEnum):
modifiers = modifiers | m
def constructor(rtype as IReturnType, parameters as ParameterCollection, m as ModifierEnum, region as IRegion, bodyRegion as IRegion):
returnType = rtype
self.parameters = parameters
self.region = region
self.bodyRegion = bodyRegion
modifiers = m
class Method(BooDefaultMethod):
def constructor(name as string, rtype as IReturnType, m as ModifierEnum, region as IRegion, bodyRegion as IRegion):
Name = name
self.returnType = rtype
self.region = region
self.bodyRegion = bodyRegion
modifiers = m
class Property(DefaultProperty):
[Property(Node)]
_node as AST.Property
def AddModifier(m as ModifierEnum):
modifiers = modifiers | m
def constructor(name as string, rtype as IReturnType, getter as IMethod, setter as IMethod, getRegion as IRegion, setRegion as IRegion, m as ModifierEnum, region as IRegion, bodyRegion as IRegion):
self.Name = name
self.returnType = rtype
self.getterMethod = getter
self.setterMethod = setter
self.getterRegion = getRegion
self.setterRegion = setRegion
self.region = region
self.bodyRegion = bodyRegion
modifiers = m
*/
|