コード例 #1
0
ファイル: Parser.cs プロジェクト: katiearriagam/Marbles
 /// <summary>
 /// Function called when a <see cref="StopBlock"/> block is found.
 /// Calls the corresponding function in <see cref="QuadrupleManager"/>.
 /// Called by <see cref="INSTRUCTION"/>.
 /// </summary>
 void STOP()
 {
     Expect(20);         // "stop"
     QuadrupleManager.ReadStop();
 }