📄 arraytypemodifiers.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' ''' <summary>''' ArrayTypeModifiers ::= ArrayTypeModifier+''' </summary>''' <remarks></remarks>Public Class ArrayTypeModifiers Inherits ParsedObject Private m_ArrayTypeModifiers() As ArrayTypeModifier Public Overrides Function ResolveTypeReferences() As Boolean Return m_ArrayTypeModifiers Is Nothing OrElse Helper.ResolveTypeReferencesCollection(m_ArrayTypeModifiers) End Function Sub New(ByVal Parent As ParsedObject) MyBase.New(Parent) End Sub Sub Init(ByVal ArrayTypeModifiers() As ArrayTypeModifier) m_ArrayTypeModifiers = ArrayTypeModifiers End Sub Function Clone(Optional ByVal NewParent As ParsedObject = Nothing) As ArrayTypeModifiers If NewParent Is Nothing Then NewParent = Me.Parent Dim result As New ArrayTypeModifiers(NewParent) Dim mods(m_ArrayTypeModifiers.GetUpperBound(0)) As ArrayTypeModifier For i As Integer = 0 To mods.GetUpperBound(0) mods(i) = m_ArrayTypeModifiers(i).Clone(result) Next result.Init(mods) Return result End Function Function CreateArrayType(ByVal OriginalType As Type) As Type Dim result As Type = OriginalType Dim mods() As ArrayTypeModifier = m_ArrayTypeModifiers For i As Integer = mods.GetUpperBound(0) To 0 Step -1 result = Helper.MakeArrayType(result, mods(i).Ranks) Next Return result End Function ReadOnly Property ArrayTypeModifiers() As ArrayTypeModifier() Get Return m_ArrayTypeModifiers End Get End Property ''' <summary> ''' There is no code to resolve here. ''' </summary> ''' <returns></returns> ''' <remarks></remarks> Public Overrides Function ResolveCode(ByVal Info As ResolveInfo) As Boolean Return True ' Helper.ResolveCodeCollection(m_ArrayTypeModifiers) End Function Overrides Function ToString() As String Dim result As String = "" For Each atn As ArrayTypeModifier In m_ArrayTypeModifiers result &= atn.ToString Next Return result End Function Shared Function CanBeMe(ByVal tm As tm) As Boolean Return ArrayTypeModifier.CanBeMe(tm) End FunctionEnd Class
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -