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

Scan_DataType() private method

private Scan_DataType ( bool afterAsOrIs = false ) : bool
afterAsOrIs bool
return bool
		bool Scan_DataType(bool afterAsOrIs = false)
		{
			if (!Scan_ComplexId())
				return false;
			if (!Scan_TypeSuffixOpt(afterAsOrIs))
				return false;
			return true;
		}
	
EcsParser