Lines Matching refs:Field
98 // assigning to a field of BitsRecTy, which must have a BitsInit
1524 TokError("expected field identifier after '.'");
1528 TokError("Cannot access field '" + Lex.getCurStrVal() + "' of value '" +
1533 Lex.Lex(); // eat field name
1683 /// ParseDeclaration - Read a declaration, returning the name of field ID, or an
1691 /// Declaration ::= FIELD? Type ID ('=' Value)?
1695 // Read the field prefix if present.
1696 bool HasField = Lex.getCode() == tgtok::Field;
1874 return TokError("expected field identifier after let");
1878 Lex.Lex(); // eat the field name.
1889 RecordVal *Field = CurRec->getValue(FieldName);
1890 if (!Field)
1893 RecTy *Type = Field->getType();