메소드 | 설명 | |
---|---|---|
AddVariable ( IVariable variable ) : |
Adds a new variable or lambda parameter to the current block.
|
|
CreateMemberLookup ( ) : MemberLookup |
Creates a MemberLookup instance using this resolver's settings.
|
|
CreateMemberLookup ( NameLookupMode lookupMode ) : MemberLookup |
Creates a MemberLookup instance using this resolver's settings.
|
|
GetDefaultValue ( IType type ) : object | ||
GetExtensionMethods ( IType targetType, string name = null, IList
|
Gets the extension methods that are called 'name' and are applicable with a first argument type of 'targetType'. The results are stored in nested lists because they are grouped by using scope. That is, for "using SomeExtensions; namespace X { using MoreExtensions; ... }", the return value will be new List { new List { all extensions from MoreExtensions }, new List { all extensions from SomeExtensions } } |
|
GetExtensionMethods ( string name = null, IList
|
Gets all extension methods that are available in the current context. The results are stored in nested lists because they are grouped by using scope. That is, for "using SomeExtensions; namespace X { using MoreExtensions; ... }", the return value will be new List { new List { all extensions from MoreExtensions }, new List { all extensions from SomeExtensions } } |
|
IsEligibleExtensionMethod ( IType targetType, IMethod method, bool useTypeInference, IType &outInferredTypes ) : bool |
Checks whether the specified extension method is eligible on the target type.
|
|
IsVariableReferenceWithSameType ( ICSharpCode.NRefactory.Semantics.ResolveResult rr, string identifier, ICSharpCode.NRefactory.Semantics.TypeResolveResult &trr ) : bool | ||
LookupSimpleNameOrTypeName ( string identifier, IList |
||
PopBlock ( ) : |
Closes the current scope for local variables; removing all variables in that scope.
|
|
PopLastVariable ( ) : |
Removes the variable that was just added.
|
|
PopObjectInitializer ( ) : |
||
PushBlock ( ) : |
Opens a new scope for local variables.
|
|
PushObjectInitializer ( ICSharpCode.NRefactory.Semantics.ResolveResult initializedObject ) : |
Pushes the type of the object that is currently being initialized.
|
|
ResolveAlias ( string identifier ) : ICSharpCode.NRefactory.Semantics.ResolveResult |
Looks up an alias (identifier in front of :: operator)
|
|
ResolveArrayCreation ( IType elementType, ICSharpCode.NRefactory.Semantics.ResolveResult sizeArguments, ICSharpCode.NRefactory.Semantics.ResolveResult initializerElements = null ) : ICSharpCode.NRefactory.Semantics.ArrayCreateResolveResult |
Resolves an array creation.
|
|
ResolveArrayCreation ( IType elementType, int sizeArguments, ICSharpCode.NRefactory.Semantics.ResolveResult initializerElements = null ) : ICSharpCode.NRefactory.Semantics.ArrayCreateResolveResult |
Resolves an array creation.
|
|
ResolveAssignment ( AssignmentOperatorType op, ICSharpCode.NRefactory.Semantics.ResolveResult lhs, ICSharpCode.NRefactory.Semantics.ResolveResult rhs ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
ResolveBaseReference ( ) : ICSharpCode.NRefactory.Semantics.ResolveResult |
Resolves 'base'.
|
|
ResolveBinaryOperator ( BinaryOperatorType op, ICSharpCode.NRefactory.Semantics.ResolveResult lhs, ICSharpCode.NRefactory.Semantics.ResolveResult rhs ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
ResolveCast ( IType targetType, ICSharpCode.NRefactory.Semantics.ResolveResult expression ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
ResolveCondition ( ICSharpCode.NRefactory.Semantics.ResolveResult input ) : ICSharpCode.NRefactory.Semantics.ResolveResult |
Converts the input to
|
|
ResolveConditionFalse ( ICSharpCode.NRefactory.Semantics.ResolveResult input ) : ICSharpCode.NRefactory.Semantics.ResolveResult |
Converts the negated input to
|
|
ResolveConditional ( ICSharpCode.NRefactory.Semantics.ResolveResult condition, ICSharpCode.NRefactory.Semantics.ResolveResult trueExpression, ICSharpCode.NRefactory.Semantics.ResolveResult falseExpression ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
ResolveDefaultValue ( IType type ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
ResolveIdentifierInObjectInitializer ( string identifier ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
ResolveIndexer ( ICSharpCode.NRefactory.Semantics.ResolveResult target, ICSharpCode.NRefactory.Semantics.ResolveResult arguments, string argumentNames = null ) : ICSharpCode.NRefactory.Semantics.ResolveResult |
Resolves an indexer access.
|
|
ResolveInvocation ( ICSharpCode.NRefactory.Semantics.ResolveResult target, ICSharpCode.NRefactory.Semantics.ResolveResult arguments, string argumentNames = null ) : ICSharpCode.NRefactory.Semantics.ResolveResult |
Resolves an invocation.
|
|
ResolveMemberAccess ( ICSharpCode.NRefactory.Semantics.ResolveResult target, string identifier, IList |
||
ResolveObjectCreation ( IType type, ICSharpCode.NRefactory.Semantics.ResolveResult arguments, string argumentNames = null, bool allowProtectedAccess = false, IList |
Resolves an object creation.
|
|
ResolvePrimitive ( object value ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
ResolveSimpleName ( string identifier, IList |
||
ResolveSizeOf ( IType type ) : ICSharpCode.NRefactory.Semantics.ResolveResult |
Resolves 'sizeof(type)'.
|
|
ResolveThisReference ( ) : ICSharpCode.NRefactory.Semantics.ResolveResult |
Resolves 'this'.
|
|
ResolveTypeOf ( IType referencedType ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
ResolveUnaryOperator ( UnaryOperatorType op, ICSharpCode.NRefactory.Semantics.ResolveResult expression ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
TypeScriptResolver ( ICompilation compilation ) : System | ||
TypeScriptResolver ( TypeScriptTypeResolveContext context ) : System | ||
WithCheckForOverflow ( bool checkForOverflow ) : |
Sets whether the current context is
|
|
WithCurrentMember ( IMember member ) : |
Sets the current member definition. Don't forget to also set CurrentTypeDefinition when setting CurrentMember; setting one of the properties does not automatically set the other. |
|
WithCurrentTypeDefinition ( ITypeDefinition typeDefinition ) : |
Sets the current type definition.
|
|
WithCurrentUsingScope ( ResolvedUsingScope usingScope ) : |
Sets the current using scope that is used to look up identifiers as class names.
|
|
WithIsWithinLambdaExpression ( bool isWithinLambdaExpression ) : |
Sets whether the resolver is currently within a lambda expression.
|
메소드 | 설명 | |
---|---|---|
AddArgumentNamesIfNecessary ( ICSharpCode.NRefactory.Semantics.ResolveResult arguments, string argumentNames ) : IList |
||
AdjustArrayAccessArguments ( ICSharpCode.NRefactory.Semantics.ResolveResult arguments ) : void |
Converts all arguments to int,uint,long or ulong.
|
|
BinaryNumericPromotion ( bool isNullable, ICSharpCode.NRefactory.Semantics.ResolveResult &lhs, ICSharpCode.NRefactory.Semantics.ResolveResult &rhs, bool allowNullableConstants ) : bool | ||
BinaryOperatorResolveResult ( IType resultType, ICSharpCode.NRefactory.Semantics.ResolveResult lhs, BinaryOperatorType op, ICSharpCode.NRefactory.Semantics.ResolveResult rhs, bool isLifted = false ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
CSharpPrimitiveCast ( TypeCode targetType, object input ) : object | ||
CastTo ( TypeCode targetType, bool isNullable, ICSharpCode.NRefactory.Semantics.ResolveResult expression, bool allowNullableConstants ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
CheckErrorAndResolveUncheckedCast ( IType targetType, ICSharpCode.NRefactory.Semantics.ResolveResult expression ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
Clone ( ) : |
||
Convert ( ICSharpCode.NRefactory.Semantics.ResolveResult rr, IType targetType ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
Convert ( ICSharpCode.NRefactory.Semantics.ResolveResult rr, IType targetType, Conversion c ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
CreateOverloadResolution ( ICSharpCode.NRefactory.Semantics.ResolveResult arguments, string argumentNames = null, IType typeArguments = null ) : OverloadResolution | ||
CreateParameters ( ICSharpCode.NRefactory.Semantics.ResolveResult arguments, string argumentNames ) : List |
||
CreateResolveResultForUserDefinedOperator ( OverloadResolution r, System operatorType ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
GetAllExtensionMethods ( ) : IList
|
Gets all extension methods available in the current using scope. This list includes unaccessible
|
|
GetEnumUnderlyingType ( IType enumType ) : IType | ||
GetExtensionMethods ( INamespace ns ) : IEnumerable |
||
GetOverloadableOperatorName ( BinaryOperatorType op ) : string | ||
GetOverloadableOperatorName ( UnaryOperatorType op ) : string | ||
GetUserDefinedOperatorCandidates ( IType type, string operatorName ) : IEnumerable |
||
GuessParameterName ( ICSharpCode.NRefactory.Semantics.ResolveResult rr ) : string | ||
HandleEnumComparison ( BinaryOperatorType op, IType enumType, bool isNullable, ICSharpCode.NRefactory.Semantics.ResolveResult lhs, ICSharpCode.NRefactory.Semantics.ResolveResult rhs ) : ICSharpCode.NRefactory.Semantics.ResolveResult |
Handle the case where an enum value is compared with another enum value bool operator op(E x, E y);
|
|
HandleEnumOperator ( bool isNullable, IType enumType, BinaryOperatorType op, ICSharpCode.NRefactory.Semantics.ResolveResult lhs, ICSharpCode.NRefactory.Semantics.ResolveResult rhs ) : ICSharpCode.NRefactory.Semantics.ResolveResult |
Handle the following enum operators: E operator +(E x, U y); E operator +(U x, E y); E operator –(E x, U y); E operator &(E x, E y); E operator |(E x, E y); E operator ^(E x, E y);
|
|
HandleEnumSubtraction ( bool isNullable, IType enumType, ICSharpCode.NRefactory.Semantics.ResolveResult lhs, ICSharpCode.NRefactory.Semantics.ResolveResult rhs ) : ICSharpCode.NRefactory.Semantics.ResolveResult |
Handle the case where an enum value is subtracted from another enum value U operator –(E x, E y);
|
|
HasType ( ICSharpCode.NRefactory.Semantics.ResolveResult r ) : bool | ||
IsBetterConditionalConversion ( Conversion c1, Conversion c2 ) : bool | ||
IsComparisonOperator ( IMethod m ) : bool | ||
IsEligibleExtensionMethod ( ICompilation compilation, CSharpConversions conversions, IType targetType, IMethod method, bool useTypeInference, IType &outInferredTypes ) : bool | ||
IsNullableTypeOrNonValueType ( IType type ) : bool | ||
IsSigned ( TypeCode code, ICSharpCode.NRefactory.Semantics.ResolveResult rr ) : bool | ||
LiftUserDefinedOperator ( IMethod m ) : LiftedUserDefinedOperator | ||
LiftUserDefinedOperators ( List |
||
LookInCurrentType ( string identifier, IList |
||
LookInCurrentUsingScope ( string identifier, IList |
||
LookInUsingScopeNamespace ( ResolvedUsingScope usingScope, INamespace n, string identifier, IList |
||
MakeNullable ( IType type, bool isNullable ) : IType | ||
MakeParameterName ( string variableName ) : string | ||
PointerArithmeticOperator ( IType resultType, IType inputType1, IType inputType2 ) : CSharpOperators.BinaryOperatorMethod | ||
PointerArithmeticOperator ( IType resultType, IType inputType1, KnownTypeCode inputType2 ) : CSharpOperators.BinaryOperatorMethod | ||
PointerArithmeticOperator ( IType resultType, KnownTypeCode inputType1, IType inputType2 ) : CSharpOperators.BinaryOperatorMethod | ||
ResolveExternAlias ( string alias ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
ResolveMemberAccessOnNamespace ( ICSharpCode.NRefactory.Semantics.NamespaceResolveResult nrr, string identifier, IList |
||
ResolveMemberType ( ICSharpCode.NRefactory.Semantics.ResolveResult target, string identifier, IList |
||
ResolveNullCoalescingOperator ( ICSharpCode.NRefactory.Semantics.ResolveResult lhs, ICSharpCode.NRefactory.Semantics.ResolveResult rhs ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
TopLevelTypeDefinitionIsAccessible ( ITypeDefinition typeDef ) : bool | ||
TryConvert ( ICSharpCode.NRefactory.Semantics.ResolveResult &rr, IType targetType ) : bool | ||
TypeScriptResolver ( ICompilation compilation, TypeScriptConversions conversions, TypeScriptTypeResolveContext context, bool checkForOverflow, bool isWithinLambdaExpression, TypeDefinitionCache currentTypeDefinitionCache, ImmutableStack |
||
UnaryNumericPromotion ( UnaryOperatorType op, IType &type, bool isNullable, ICSharpCode.NRefactory.Semantics.ResolveResult expression ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
UnaryOperatorResolveResult ( IType resultType, UnaryOperatorType op, ICSharpCode.NRefactory.Semantics.ResolveResult expression, bool isLifted = false ) : ICSharpCode.NRefactory.Semantics.OperatorResolveResult | ||
WithContext ( TypeScriptTypeResolveContext newContext ) : |
||
WithLocalVariableStack ( ImmutableStack |
||
WithObjectInitializerStack ( ObjectInitializerContext stack ) : |
public AddVariable ( IVariable variable ) : |
||
variable | IVariable | |
리턴 |
public CreateMemberLookup ( NameLookupMode lookupMode ) : MemberLookup | ||
lookupMode | NameLookupMode | |
리턴 | MemberLookup |
public static GetDefaultValue ( IType type ) : object | ||
type | IType | |
리턴 | object |
public GetExtensionMethods ( IType targetType, string name = null, IList
|
||
targetType | IType | Type of the 'this' argument |
name | string | Name of the extension method. Pass null to retrieve all extension methods. |
typeArguments | IList |
Explicitly provided type arguments.
/// An empty list will return all matching extension method definitions;
/// a non-empty list will return |
substituteInferredTypes | bool |
/// Specifies whether to produce a |
리턴 | List
|
public GetExtensionMethods ( string name = null, IList
|
||
name | string | Name of the extension method. Pass null to retrieve all extension methods. |
typeArguments | IList |
Explicitly provided type arguments.
/// An empty list will return all matching extension method definitions;
/// a non-empty list will return |
리턴 | List
|
public static IsEligibleExtensionMethod ( IType targetType, IMethod method, bool useTypeInference, IType &outInferredTypes ) : bool | ||
targetType | IType | Target type that is passed as first argument to the extension method. |
method | IMethod | The extension method. |
useTypeInference | bool | Whether to perform type inference for the method.
/// Use |
outInferredTypes | IType | If the method is generic and |
리턴 | bool |
public IsVariableReferenceWithSameType ( ICSharpCode.NRefactory.Semantics.ResolveResult rr, string identifier, ICSharpCode.NRefactory.Semantics.TypeResolveResult &trr ) : bool | ||
rr | ICSharpCode.NRefactory.Semantics.ResolveResult | |
identifier | string | |
trr | ICSharpCode.NRefactory.Semantics.TypeResolveResult | |
리턴 | bool |
public LookupSimpleNameOrTypeName ( string identifier, IList |
||
identifier | string | |
typeArguments | IList |
|
lookupMode | NameLookupMode | |
리턴 | ICSharpCode.NRefactory.Semantics.ResolveResult |
public PopObjectInitializer ( ) : |
||
리턴 |
public PushObjectInitializer ( ICSharpCode.NRefactory.Semantics.ResolveResult initializedObject ) : |
||
initializedObject | ICSharpCode.NRefactory.Semantics.ResolveResult | |
리턴 |
public ResolveAlias ( string identifier ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
identifier | string | |
리턴 | ICSharpCode.NRefactory.Semantics.ResolveResult |
public ResolveArrayCreation ( IType elementType, ICSharpCode.NRefactory.Semantics.ResolveResult sizeArguments, ICSharpCode.NRefactory.Semantics.ResolveResult initializerElements = null ) : ICSharpCode.NRefactory.Semantics.ArrayCreateResolveResult | ||
elementType | IType | /// The array element type. /// Pass null to resolve an implicitly-typed array creation. /// |
sizeArguments | ICSharpCode.NRefactory.Semantics.ResolveResult |
/// The size arguments.
/// The length of this array will be used as the number of dimensions of the array type.
/// The resolver may mutate this array to wrap elements in |
initializerElements | ICSharpCode.NRefactory.Semantics.ResolveResult |
/// The initializer elements. May be null if no array initializer was specified.
/// The resolver may mutate this array to wrap elements in |
리턴 | ICSharpCode.NRefactory.Semantics.ArrayCreateResolveResult |
public ResolveArrayCreation ( IType elementType, int sizeArguments, ICSharpCode.NRefactory.Semantics.ResolveResult initializerElements = null ) : ICSharpCode.NRefactory.Semantics.ArrayCreateResolveResult | ||
elementType | IType | /// The array element type. /// Pass null to resolve an implicitly-typed array creation. /// |
sizeArguments | int | /// The size arguments. /// The length of this array will be used as the number of dimensions of the array type. /// Negative values will be treated as errors. /// |
initializerElements | ICSharpCode.NRefactory.Semantics.ResolveResult |
/// The initializer elements. May be null if no array initializer was specified.
/// The resolver may mutate this array to wrap elements in |
리턴 | ICSharpCode.NRefactory.Semantics.ArrayCreateResolveResult |
public ResolveAssignment ( AssignmentOperatorType op, ICSharpCode.NRefactory.Semantics.ResolveResult lhs, ICSharpCode.NRefactory.Semantics.ResolveResult rhs ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
op | AssignmentOperatorType | |
lhs | ICSharpCode.NRefactory.Semantics.ResolveResult | |
rhs | ICSharpCode.NRefactory.Semantics.ResolveResult | |
리턴 | ICSharpCode.NRefactory.Semantics.ResolveResult |
public ResolveBaseReference ( ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
리턴 | ICSharpCode.NRefactory.Semantics.ResolveResult |
public ResolveBinaryOperator ( BinaryOperatorType op, ICSharpCode.NRefactory.Semantics.ResolveResult lhs, ICSharpCode.NRefactory.Semantics.ResolveResult rhs ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
op | BinaryOperatorType | |
lhs | ICSharpCode.NRefactory.Semantics.ResolveResult | |
rhs | ICSharpCode.NRefactory.Semantics.ResolveResult | |
리턴 | ICSharpCode.NRefactory.Semantics.ResolveResult |
public ResolveCast ( IType targetType, ICSharpCode.NRefactory.Semantics.ResolveResult expression ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
targetType | IType | |
expression | ICSharpCode.NRefactory.Semantics.ResolveResult | |
리턴 | ICSharpCode.NRefactory.Semantics.ResolveResult |
public ResolveCondition ( ICSharpCode.NRefactory.Semantics.ResolveResult input ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
input | ICSharpCode.NRefactory.Semantics.ResolveResult | |
리턴 | ICSharpCode.NRefactory.Semantics.ResolveResult |
public ResolveConditionFalse ( ICSharpCode.NRefactory.Semantics.ResolveResult input ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
input | ICSharpCode.NRefactory.Semantics.ResolveResult | |
리턴 | ICSharpCode.NRefactory.Semantics.ResolveResult |
public ResolveConditional ( ICSharpCode.NRefactory.Semantics.ResolveResult condition, ICSharpCode.NRefactory.Semantics.ResolveResult trueExpression, ICSharpCode.NRefactory.Semantics.ResolveResult falseExpression ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
condition | ICSharpCode.NRefactory.Semantics.ResolveResult | |
trueExpression | ICSharpCode.NRefactory.Semantics.ResolveResult | |
falseExpression | ICSharpCode.NRefactory.Semantics.ResolveResult | |
리턴 | ICSharpCode.NRefactory.Semantics.ResolveResult |
public ResolveDefaultValue ( IType type ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
type | IType | |
리턴 | ICSharpCode.NRefactory.Semantics.ResolveResult |
public ResolveIdentifierInObjectInitializer ( string identifier ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
identifier | string | |
리턴 | ICSharpCode.NRefactory.Semantics.ResolveResult |
public ResolveIndexer ( ICSharpCode.NRefactory.Semantics.ResolveResult target, ICSharpCode.NRefactory.Semantics.ResolveResult arguments, string argumentNames = null ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
target | ICSharpCode.NRefactory.Semantics.ResolveResult | Target expression. |
arguments | ICSharpCode.NRefactory.Semantics.ResolveResult |
/// Arguments passed to the indexer.
/// The resolver may mutate this array to wrap elements in |
argumentNames | string | /// The argument names. Pass the null string for positional arguments. /// |
리턴 | ICSharpCode.NRefactory.Semantics.ResolveResult |
public ResolveInvocation ( ICSharpCode.NRefactory.Semantics.ResolveResult target, ICSharpCode.NRefactory.Semantics.ResolveResult arguments, string argumentNames = null ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
target | ICSharpCode.NRefactory.Semantics.ResolveResult | The target of the invocation. Usually a MethodGroupResolveResult. |
arguments | ICSharpCode.NRefactory.Semantics.ResolveResult |
/// Arguments passed to the method.
/// The resolver may mutate this array to wrap elements in |
argumentNames | string | /// The argument names. Pass the null string for positional arguments. /// |
리턴 | ICSharpCode.NRefactory.Semantics.ResolveResult |
public ResolveMemberAccess ( ICSharpCode.NRefactory.Semantics.ResolveResult target, string identifier, IList |
||
target | ICSharpCode.NRefactory.Semantics.ResolveResult | |
identifier | string | |
typeArguments | IList |
|
lookupMode | NameLookupMode | |
리턴 | ICSharpCode.NRefactory.Semantics.ResolveResult |
public ResolveObjectCreation ( IType type, ICSharpCode.NRefactory.Semantics.ResolveResult arguments, string argumentNames = null, bool allowProtectedAccess = false, IList |
||
type | IType | Type of the object to create. |
arguments | ICSharpCode.NRefactory.Semantics.ResolveResult |
/// Arguments passed to the constructor.
/// The resolver may mutate this array to wrap elements in |
argumentNames | string | /// The argument names. Pass the null string for positional arguments. /// |
allowProtectedAccess | bool | /// Whether to allow calling protected constructors. /// This should be false except when resolving constructor initializers. /// |
initializerStatements | IList |
/// Statements for Objects/Collections initializer.
/// |
리턴 | ICSharpCode.NRefactory.Semantics.ResolveResult |
public ResolvePrimitive ( object value ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
value | object | |
리턴 | ICSharpCode.NRefactory.Semantics.ResolveResult |
public ResolveSimpleName ( string identifier, IList |
||
identifier | string | |
typeArguments | IList |
|
isInvocationTarget | bool | |
리턴 | ICSharpCode.NRefactory.Semantics.ResolveResult |
public ResolveSizeOf ( IType type ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
type | IType | |
리턴 | ICSharpCode.NRefactory.Semantics.ResolveResult |
public ResolveThisReference ( ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
리턴 | ICSharpCode.NRefactory.Semantics.ResolveResult |
public ResolveTypeOf ( IType referencedType ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
referencedType | IType | |
리턴 | ICSharpCode.NRefactory.Semantics.ResolveResult |
public ResolveUnaryOperator ( UnaryOperatorType op, ICSharpCode.NRefactory.Semantics.ResolveResult expression ) : ICSharpCode.NRefactory.Semantics.ResolveResult | ||
op | UnaryOperatorType | |
expression | ICSharpCode.NRefactory.Semantics.ResolveResult | |
리턴 | ICSharpCode.NRefactory.Semantics.ResolveResult |
public TypeScriptResolver ( ICompilation compilation ) : System | ||
compilation | ICompilation | |
리턴 | System |
public TypeScriptResolver ( TypeScriptTypeResolveContext context ) : System | ||
context | TypeScriptTypeResolveContext | |
리턴 | System |
public WithCheckForOverflow ( bool checkForOverflow ) : |
||
checkForOverflow | bool | |
리턴 |
public WithCurrentMember ( IMember member ) : |
||
member | IMember | |
리턴 |
public WithCurrentTypeDefinition ( ITypeDefinition typeDefinition ) : |
||
typeDefinition | ITypeDefinition | |
리턴 |
public WithCurrentUsingScope ( ResolvedUsingScope usingScope ) : |
||
usingScope | ResolvedUsingScope | |
리턴 |
public WithIsWithinLambdaExpression ( bool isWithinLambdaExpression ) : |
||
isWithinLambdaExpression | bool | |
리턴 |