Click or drag to resize

FinishedHandler Delegate

Represents a method called after the rewrite step of a rule or multi construct.

Namespace: de.unika.ipd.grGen.libGr
Assembly: libGr (in libGr.dll) Version: GrGen.NET 7.1
Syntax
C#
public delegate void FinishedHandler(
	IMatches[] matches,
	bool[] special
)

Parameters

matches  IMatches
The array of IMatches objects found (contains multiple IMatches objects iff a multi construct was matched) This may contain invalid matched elements, because parts of the matches may have been deleted.
special  Boolean
Specifies whether the "special" flag has been used (per rule/test).
See Also