ICSharpCode.NRefactory.CSharp.Resolver.CSharpResolver.CSharpResolver C# (CSharp) Method

CSharpResolver() private method

private CSharpResolver ( ICompilation compilation, CSharpConversions conversions, ICSharpCode.NRefactory.CSharp.TypeSystem.CSharpTypeResolveContext context, bool checkForOverflow, bool isWithinLambdaExpression, TypeDefinitionCache currentTypeDefinitionCache, ImmutableStack localVariableStack, ObjectInitializerContext objectInitializerStack ) : System
compilation ICompilation
conversions CSharpConversions
context ICSharpCode.NRefactory.CSharp.TypeSystem.CSharpTypeResolveContext
checkForOverflow bool
isWithinLambdaExpression bool
currentTypeDefinitionCache TypeDefinitionCache
localVariableStack ImmutableStack
objectInitializerStack ObjectInitializerContext
return System
		private CSharpResolver(ICompilation compilation, CSharpConversions conversions, CSharpTypeResolveContext context, bool checkForOverflow, bool isWithinLambdaExpression, TypeDefinitionCache currentTypeDefinitionCache, ImmutableStack<IVariable> localVariableStack, ObjectInitializerContext objectInitializerStack)
		{
			this.compilation = compilation;
			this.conversions = conversions;
			this.context = context;
			this.checkForOverflow = checkForOverflow;
			this.isWithinLambdaExpression = isWithinLambdaExpression;
			this.currentTypeDefinitionCache = currentTypeDefinitionCache;
			this.localVariableStack = localVariableStack;
			this.objectInitializerStack = objectInitializerStack;
		}
		#endregion

Same methods

CSharpResolver::CSharpResolver ( ICSharpCode.NRefactory.CSharp.TypeSystem.CSharpTypeResolveContext context ) : System
CSharpResolver::CSharpResolver ( ICompilation compilation ) : System
CSharpResolver