Click or drag to resize

CodeObjectResolveGotoTargetUp Method

Resolve child code objects that match the specified name are valid goto targets, moving up the tree until a complete match is found.

Namespace:  Nova.CodeDOM
Assembly:  Nova.CodeDOM (in Nova.CodeDOM.dll) Version: 7.44.8391.13415
Syntax
C#
public virtual void ResolveGotoTargetUp(
	string name,
	Resolver resolver
)

Parameters

name
Type: SystemString
The name of the desired goto target(s).
resolver
Type: Nova.ResolvingResolver
The resolver object.
Remarks
Search for objects by name recursively up the parent code tree, finding: - Labels and SwitchItems in the current block. - Labels and SwitchItems in each parent block up to the parent MethodDeclBase level.
See Also