Loyc.Ecs.Parser.EcsParser.AsmOrModLabel C# (CSharp) Method

AsmOrModLabel() private method

private AsmOrModLabel ( ) : Token
return Token
		Token AsmOrModLabel()
		{
			Check(LT(0).Value == _assembly || LT(0).Value == _module, "Expected LT($LI).Value == _assembly || LT($LI).Value == _module");
			var t = Match((int) TT.ContextualKeyword);
			Match((int) TT.Colon);
			// line 1587
			return t;
		}
	
EcsParser