Browse Source

Fix comment

pull/728/merge
Daniel Grunwald 9 years ago
parent
commit
e6b889ac92
  1. 4
      ICSharpCode.Decompiler/IL/Patterns/ListMatch.cs

4
ICSharpCode.Decompiler/IL/Patterns/ListMatch.cs

@ -33,8 +33,8 @@ namespace ICSharpCode.Decompiler.IL.Patterns
/// When leaving those calls (whether with a successful match or not), the outer PerformMatch() calls may push additional state onto /// When leaving those calls (whether with a successful match or not), the outer PerformMatch() calls may push additional state onto
/// all of the added backtracking-savepoints. /// all of the added backtracking-savepoints.
/// When the overall list match fails but savepoints exists, the most recently added savepoint is restored by calling PerformMatch() /// When the overall list match fails but savepoints exists, the most recently added savepoint is restored by calling PerformMatch()
/// with listMatch.restoreFrom set to that savepoint. Each PerformMatch() call must pop its state from the savepoint /// with listMatch.restoreStack set to that savepoint. Each PerformMatch() call must pop its state from that stack before
/// This state is popped again when resuming from the checkpoint. /// recursively calling its child patterns.
/// </remarks> /// </remarks>
public struct ListMatch public struct ListMatch
{ {

Loading…
Cancel
Save