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
|
#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 System.CodeDom
import System.Collections
import System.Diagnostics
import MonoDevelop.Projects.Dom
import Boo.Lang.Compiler.Ast as AST
/////////////////////////////////////
/// Class ///
/////////////////////////////////////
class Class(DefaultClass):
def constructor(cu as DefaultCompilationUnit, t as ClassType, m as ModifierEnum, region as IRegion):
super (cu)
classType = t
self.region = region
modifiers = m
def UpdateModifier():
if classType == ClassType.Enum:
for f as Field in Fields:
f.AddModifier(ModifierEnum.Public)
return
for f as Field in Fields:
if f.Modifiers == ModifierEnum.None:
f.AddModifier(ModifierEnum.Protected)
if classType != ClassType.Interface:
return
for c as Class in InnerClasses:
c.modifiers = c.modifiers | ModifierEnum.Public
for m as IMethod in Methods:
if m isa BooDefaultMethod:
cast(BooDefaultMethod, m).AddModifier(ModifierEnum.Public)
else:
Debug.Assert(false, 'Unexpected type in method of interface. Can not set modifier to public!')
for e as DefaultEvent in Events:
e.AddModifier(ModifierEnum.Public)
for f as Field in Fields:
f.AddModifier(ModifierEnum.Public)
for i as Indexer in Indexer:
i.AddModifier(ModifierEnum.Public)
for p as Property in Properties:
p.AddModifier(ModifierEnum.Public)
*/
|