Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ITokenStream.cs « scanner « ilasm « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c10232c86950540bca01893576515498da9638d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// ITokenStream.cs
// (C) Sergey Chaban (serge@wildwestsoftware.com)

using System;
using System.Collections;

namespace Mono.ILASM {
	public interface ITokenStream {
		ILToken NextToken {get;}
		ILToken LastToken {get;}
	}
}