about summary refs log tree commit diff stats
path: root/035lookup.cc
Commit message (Expand)AuthorAgeFilesLines
* 3592 - warn on *any* lookup of address 0Kartik K. Agaram2016-10-251-2/+18
* 3522Kartik K. Agaram2016-10-191-1/+1
* 3381Kartik K. Agaram2016-09-171-4/+4
* 3380Kartik K. Agaram2016-09-171-76/+76
* 3327Kartik K. Agaram2016-09-111-1/+1
* 3309Kartik K. Agaram2016-09-091-4/+4
* 3307Kartik K. Agaram2016-09-091-0/+2
* 3223Kartik K. Agaram2016-08-181-4/+0
* 3210 - new primitive: character-to-codeKartik K. Agaram2016-08-171-0/+2
* 3119Kartik K. Agaram2016-07-211-0/+44
* 3037Kartik K. Agaram2016-06-071-8/+12
* 2992Kartik K. Agaram2016-05-201-1/+1
* 2990Kartik K. Agaram2016-05-201-4/+4
* 2971Kartik K. Agaram2016-05-171-0/+11
* 2966Kartik K. Agaram2016-05-171-1/+6
* 2961Kartik K. Agaram2016-05-151-2/+2
* 2955 - back to more refcount housekeepingKartik K. Agaram2016-05-121-2/+2
* 2933Kartik K. Agaram2016-05-061-2/+2
* 2931 - be explicit about making copiesKartik K. Agaram2016-05-061-15/+15
* 2898 - start filling in missing refcountsKartik K. Agaram2016-05-031-3/+3
* 2897Kartik K. Agaram2016-05-031-0/+460
tyles> <style id="comment" name="Comment" map-to="def:comment"/> <style id="string" name="String" map-to="def:string"/> <style id="keyword" name="Keyword" map-to="def:keyword"/> </styles> <definitions> <context id="subx"> <include> <context id="comment" style-ref="comment"> <match>#.*</match> </context> <context id="string" style-ref="string"> <match>"[^"]*"</match> </context> <!-- TODO: distinguish functions, globals, tests and internal labels --> <context id="keyword" style-ref="keyword"> <match>^[^ ]*:</match> </context> </include> </context> </definitions> </language>