Lines Matching refs:record
174 " Section: Handle Ada's record keywords. {{{1
176 " 'record' usually starts a structure, but "with null record;" does not,
177 " and 'end record;' ends a structure. The ordering here is critical -
178 " 'record;' matches a "with null record", so make it a keyword (this can
180 " We see the "end" in "end record" before the word record, so we match that
181 " pattern as adaStructure (and it won't match the "record;" pattern).
183 syntax match adaStructure "\<record\>" contains=adaRecord
184 syntax match adaStructure "\<end\s\+record\>" contains=adaRecord
185 syntax match adaKeyword "\<record;"me=e-1
245 " Recognize "with null record" as a keyword (even the "record").
246 syntax match adaKeyword "\<with\s\+null\s\+record\>"
301 \ start="\<is\s\+record\>"
302 \ end="\<end\s\+record\>"