Browse Source

Don't look further if scope is fixed.

woollybah 9 năm trước cách đây
mục cha
commit
ac35768c41
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      expr.bmx

+ 1 - 1
expr.bmx

@@ -2335,7 +2335,7 @@ Type TIdentExpr Extends TExpr
 		End If
 
 		' couldn't find it? try a global search
-		If Not fdecl Then
+		If Not fdecl And Not fixedScope Then
 			For Local mdecl:TModuleDecl = EachIn _appInstance.globalImports.Values()
 				Try
 					fdecl=mdecl.FindFuncDecl( IdentLower(), args,,,,True,SCOPE_ALL )