@@ -101,37 +101,37 @@ private IBoundExpression ResolveEnclosingModuleNamespace(string name)
101101 Enclosing Module namespace: A variable, constant, Enum type, Enum member, property,
102102 function or subroutine defined at the module-level in the enclosing module.
103103 */
104- var moduleVariable = _declarationFinder . FindMemberEnclosingModule ( _project , _module , _parent , name , DeclarationType . Variable ) ;
104+ var moduleVariable = _declarationFinder . FindMemberEnclosingModule ( _module , _parent , name , DeclarationType . Variable ) ;
105105 if ( IsValidMatch ( moduleVariable , name ) )
106106 {
107107 return new SimpleNameExpression ( moduleVariable , ExpressionClassification . Variable , _expression ) ;
108108 }
109- var moduleConstant = _declarationFinder . FindMemberEnclosingModule ( _project , _module , _parent , name , DeclarationType . Constant ) ;
109+ var moduleConstant = _declarationFinder . FindMemberEnclosingModule ( _module , _parent , name , DeclarationType . Constant ) ;
110110 if ( IsValidMatch ( moduleConstant , name ) )
111111 {
112112 return new SimpleNameExpression ( moduleConstant , ExpressionClassification . Variable , _expression ) ;
113113 }
114- var enumType = _declarationFinder . FindMemberEnclosingModule ( _project , _module , _parent , name , DeclarationType . Enumeration ) ;
114+ var enumType = _declarationFinder . FindMemberEnclosingModule ( _module , _parent , name , DeclarationType . Enumeration ) ;
115115 if ( IsValidMatch ( enumType , name ) )
116116 {
117117 return new SimpleNameExpression ( enumType , ExpressionClassification . Type , _expression ) ;
118118 }
119- var enumMember = _declarationFinder . FindMemberEnclosingModule ( _project , _module , _parent , name , DeclarationType . EnumerationMember ) ;
119+ var enumMember = _declarationFinder . FindMemberEnclosingModule ( _module , _parent , name , DeclarationType . EnumerationMember ) ;
120120 if ( IsValidMatch ( enumMember , name ) )
121121 {
122122 return new SimpleNameExpression ( enumMember , ExpressionClassification . Value , _expression ) ;
123123 }
124- var property = _declarationFinder . FindMemberEnclosingModule ( _project , _module , _parent , name , _propertySearchType ) ;
124+ var property = _declarationFinder . FindMemberEnclosingModule ( _module , _parent , name , _propertySearchType ) ;
125125 if ( IsValidMatch ( property , name ) )
126126 {
127127 return new SimpleNameExpression ( property , ExpressionClassification . Property , _expression ) ;
128128 }
129- var function = _declarationFinder . FindMemberEnclosingModule ( _project , _module , _parent , name , DeclarationType . Function ) ;
129+ var function = _declarationFinder . FindMemberEnclosingModule ( _module , _parent , name , DeclarationType . Function ) ;
130130 if ( IsValidMatch ( function , name ) )
131131 {
132132 return new SimpleNameExpression ( function , ExpressionClassification . Function , _expression ) ;
133133 }
134- var subroutine = _declarationFinder . FindMemberEnclosingModule ( _project , _module , _parent , name , DeclarationType . Procedure ) ;
134+ var subroutine = _declarationFinder . FindMemberEnclosingModule ( _module , _parent , name , DeclarationType . Procedure ) ;
135135 if ( IsValidMatch ( subroutine , name ) )
136136 {
137137 return new SimpleNameExpression ( subroutine , ExpressionClassification . Subroutine , _expression ) ;
0 commit comments