⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 propertysetdeclaration.vb

📁 大名鼎鼎的mono是.NET平台的跨平台(支持linux
💻 VB
字号:
' ' Visual Basic.Net Compiler' Copyright (C) 2004 - 2007 Rolf Bjarne Kvinge, RKvinge@novell.com' ' This library is free software; you can redistribute it and/or' modify it under the terms of the GNU Lesser General Public' License as published by the Free Software Foundation; either' version 2.1 of the License, or (at your option) any later version.' ' This library 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' Lesser General Public License for more details.' ' You should have received a copy of the GNU Lesser General Public' License along with this library; if not, write to the Free Software' Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA' Imports System.ReflectionImports System.Reflection.Emit''' <summary>''' PropertySetDeclaration  ::='''	[  Attributes  ]  [  AccessModifier  ]  "Set" [  (  ParameterList  )  ]  LineTerminator'''	[  Block  ]'''	"End" "Set" StatementTerminator''' </summary>''' <remarks></remarks>Public Class PropertySetDeclaration    Inherits PropertyHandlerDeclaration    Public Sub New(ByVal Parent As PropertyDeclaration)        MyBase.New(Parent)    End Sub    Public Shadows Sub Init(ByVal Attributes As Attributes, ByVal Modifiers As Modifiers, ByVal PropertySignature As FunctionSignature, ByVal ImplementsClause As MemberImplementsClause, ByVal Block As CodeBlock, ByVal SetParameters As ParameterList)        Dim mySignature As SubSignature        Dim name As String        Dim typeParams As TypeParameters        Dim params As ParameterList        mySignature = New SubSignature(Me)        If PropertySignature.TypeParameters IsNot Nothing Then            typeParams = PropertySignature.TypeParameters.Clone(mySignature)        Else            typeParams = Nothing        End If        If PropertySignature.Parameters IsNot Nothing Then            params = PropertySignature.Parameters.Clone(mySignature)        Else            params = New ParameterList(mySignature)        End If        name = "set_" & PropertySignature.Name        mySignature.Init(Token.CreateIdentifierToken(PropertySignature.Identifier, name), typeParams, params)        Dim valueName As String = "value"        If SetParameters IsNot Nothing AndAlso SetParameters.Count > 0 Then            If SetParameters.Count > 1 Then                Helper.AddError()            End If            valueName = SetParameters(0).Name        End If        Dim param As Parameter        If PropertySignature.ReturnType IsNot Nothing Then            param = New Parameter(mySignature.Parameters, valueName, PropertySignature.ReturnType)        Else            param = New Parameter(mySignature.Parameters, valueName, PropertySignature.TypeName)        End If        param.Identifier.Identifier = Token.CreateIdentifierToken(param.Identifier.Identifier.Location, param.Identifier.Identifier.Identifier, mySignature.Identifier.TypeCharacter, False)        mySignature.Parameters.Add(param)        MyBase.Init(Attributes, Modifiers, mySignature, ImplementsClause, Block)    End Sub    Shared Shadows Function IsMe(ByVal tm As tm) As Boolean        Dim i As Integer        While tm.PeekToken(i).Equals(ModifierMasks.AccessModifiers)            i += 1        End While        Return tm.PeekToken(i) = KS.Set    End FunctionEnd Class

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -