C# Class YAMP.BreakableKeyword

Represents the abstract base class for any keyword that allows the break keyword to be used in an inner scope.
Inheritance: BodyKeyword
Afficher le fichier Open project: FlorianRappl/YAMP

Méthodes publiques

Méthode Description
Break ( ) : void

Breaks the execution of the breakable block.

BreakableKeyword ( string token ) : System

Méthodes protégées

Méthode Description
SetMarker ( ParseEngine engine ) : void
UnsetMarker ( ParseEngine engine ) : void

Method Details

Break() public abstract méthode

Breaks the execution of the breakable block.
public abstract Break ( ) : void
Résultat void

BreakableKeyword() public méthode

public BreakableKeyword ( string token ) : System
token string
Résultat System

SetMarker() protected méthode

protected SetMarker ( ParseEngine engine ) : void
engine ParseEngine
Résultat void

UnsetMarker() protected méthode

protected UnsetMarker ( ParseEngine engine ) : void
engine ParseEngine
Résultat void