📄 selectstatement.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>''' SelectStatement ::=''' "Select" [ "Case" ] Expression StatementTerminator''' [ CaseStatement+ ]''' [ CaseElseStatement ]''' "End" "Select" StatementTerminator''' </summary>''' <remarks></remarks>Public Class SelectStatement Inherits Statement Private m_Test As Expression Private m_CachedTest As CachedExpression Private m_Cases As BaseObjects(Of CaseStatement) Public EndLabel As Label ReadOnly Property CachedTest() As Expression Get Return m_cachedtest End Get End Property ReadOnly Property Test() As Expression Get Return m_Test End Get End Property ReadOnly Property Cases() As BaseObjects(Of CaseStatement) Get Return m_Cases End Get End Property Public Overrides Function ResolveTypeReferences() As Boolean Dim result As Boolean = True If m_Test IsNot Nothing Then result = m_Test.ResolveTypeReferences AndAlso result If m_Cases IsNot Nothing Then result = m_Cases.ResolveTypeReferences AndAlso result Return result End Function Sub New(ByVal Parent As ParsedObject) MyBase.New(Parent) End Sub Sub Init(ByVal Test As Expression, ByVal Cases As BaseObjects(Of CaseStatement)) m_Test = Test m_Cases = Cases End Sub Friend Overrides Function GenerateCode(ByVal Info As EmitInfo) As Boolean Dim result As Boolean = True EndLabel = Info.ILGen.DefineLabel For i As Integer = 0 To m_Cases.Count - 1 Dim stmt As CaseStatement = m_Cases(i) result = stmt.GenerateCode(Info) AndAlso result Next Info.ILGen.MarkLabel(EndLabel) Return result End Function Public Overrides Function ResolveStatement(ByVal Info As ResolveInfo) As Boolean Dim result As Boolean = True result = m_Test.ResolveExpression(Info) AndAlso result result = Helper.VerifyValueClassification(m_Test, Info) AndAlso result m_CachedTest = New CachedExpression(m_Test, m_Test) result = m_Cases.ResolveCode(info) AndAlso result Compiler.Helper.AddCheck("Check that there is at most one else block, and only at the end.") Return result End FunctionEnd Class
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -