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

Scan_AsmOrModLabel() private method

private Scan_AsmOrModLabel ( ) : bool
return bool
		bool Scan_AsmOrModLabel()
		{
			if (!(LT(0).Value == _assembly || LT(0).Value == _module))
				return false;
			if (!TryMatch((int) TT.ContextualKeyword))
				return false;
			if (!TryMatch((int) TT.Colon))
				return false;
			return true;
		}
	
EcsParser