📄 methodgrouptovalueexpression.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' Public Class MethodGroupToValueExpression Inherits Expression Private m_MethodGroup As MethodGroupClassification Private m_ExpressionType As Type Sub New(ByVal Parent As ParsedObject, ByVal MethodGroupClassification As MethodGroupClassification) MyBase.new(Parent) m_MethodGroup = MethodGroupClassification End Sub Public Overrides ReadOnly Property IsConstant() As Boolean Get Return m_MethodGroup.IsConstant End Get End Property Public Overrides ReadOnly Property ConstantValue() As Object Get Return m_MethodGroup.ConstantValue End Get End Property Protected Overrides Function ResolveExpressionInternal(ByVal Info As ResolveInfo) As Boolean Dim result As Boolean = True If m_MethodGroup.Resolved = False Then result = m_MethodGroup.ResolveGroup(New ArgumentList(Me.Parent), Nothing) AndAlso result End If If result = False Then Report.WriteLine("Method group resolution failed, showing log.") Helper.LOGMETHODRESOLUTION = True result = m_MethodGroup.ResolveGroup(New ArgumentList(Me.Parent), Nothing) AndAlso result Helper.LOGMETHODRESOLUTION = False Helper.AddError("Could not resolve MethodGroup, Location=" & Me.Parent.Location.ToString(Compiler)) Return False End If Helper.Assert(m_MethodGroup.ResolvedMethod IsNot Nothing) If m_MethodGroup.ResolvedMethodInfo IsNot Nothing Then m_ExpressionType = m_MethodGroup.ResolvedMethodInfo.ReturnType ElseIf m_MethodGroup.ResolvedConstructor IsNot Nothing Then m_ExpressionType = m_MethodGroup.ResolvedConstructor.DeclaringType Else Throw New InternalException(Me) End If result = m_ExpressionType IsNot Nothing AndAlso result Me.Classification = New ValueClassification(Me) Return result End Function Protected Overrides Function GenerateCodeInternal(ByVal Info As EmitInfo) As Boolean Dim result As Boolean = True Helper.Assert(m_MethodGroup.Resolved) Helper.EmitArgumentsAndCallOrCallVirt(Info, m_MethodGroup.InstanceExpression, New ArgumentList(Me.Parent, m_MethodGroup.Parameters), m_MethodGroup.ResolvedMethod) Return result End Function Overrides ReadOnly Property ExpressionType() As Type Get Return m_ExpressionType End Get End PropertyEnd Class
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -