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

Try_Scan_DataType() private method

private Try_Scan_DataType ( int lookaheadAmt, bool afterAsOrIs = false ) : bool
lookaheadAmt int
afterAsOrIs bool
return bool
		bool Try_Scan_DataType(int lookaheadAmt, bool afterAsOrIs = false) {
			using (new SavePosition(this, lookaheadAmt))
				return Scan_DataType(afterAsOrIs);
		}
		bool Scan_DataType(bool afterAsOrIs = false)
EcsParser