about summary refs log tree commit diff stats
path: root/html/054static_dispatch.cc.html
Commit message (Collapse)AuthorAgeFilesLines
* 5485 - promote SubX to top-levelKartik Agaram2019-07-271-671/+0
|
* 4891Kartik Agaram2018-12-301-0/+1
| | | | | | | | | | | Couple more tweaks to html rendering: a) SubX definitions no longer link redundantly to themselves. This long-standing issue turns out to be tractable to solve for SubX files since the syntax is so simple. b) Fix links to SubX definitions in other directories. I forgot that I have to always generate tags from the directory of the file being linkified. c) Fix link colors. Before we lost all syntax highlighting for functions and Globals. Now they maintain their colors, just add an underline.
* 4890 - new html renderingsKartik Agaram2018-12-291-17/+12
| | | | | | | a) Switch to a light background. b) Linkify calls in .subx files. c) Keep all colorization in the Vim colorscheme, get rid of hacky special-cases in update_html.
* 4814Kartik Agaram2018-12-011-60/+63
|
* 4709Kartik Agaram2018-10-171-21/+21
|
* 4539Kartik Agaram2018-09-071-7/+7
|
* 4447Kartik Agaram2018-07-271-509/+416
|
* 4243Kartik Agaram2018-05-121-1/+1
|
* 4239Kartik Agaram2018-05-081-7/+7
|
* 4199Kartik K. Agaram2018-01-251-144/+143
|
* 4161Kartik K. Agaram2017-12-151-6/+6
|
* 4155Kartik K. Agaram2017-12-071-517/+521
|
* 4135Kartik K. Agaram2017-12-031-1/+1
|
* 4134 - 'input' = 'ingredient'Kartik K. Agaram2017-12-031-6/+6
|
* 4122Kartik K. Agaram2017-11-151-1/+1
|
* 4109Kartik K. Agaram2017-11-051-4/+4
|
* 4102Kartik K. Agaram2017-11-011-471/+477
|
* 4003Kartik K. Agaram2017-09-231-1/+1
|
* 3963Kartik K. Agaram2017-07-081-1/+1
| | | | | | | | Narrow the scope of implicit type conversions. Now only numbers can be freely converted to from other scalars (booleans, characters). We want in particular to make this an error: x:character <- new [abc]
* 3927Kartik K. Agaram2017-06-191-23/+23
|
* 3897 - various updates to documentationKartik K. Agaram2017-05-291-37/+37
|
* 3895Kartik K. Agaram2017-05-291-116/+117
|
* 3877Kartik K. Agaram2017-05-261-7/+7
|
* 3845Kartik K. Agaram2017-05-061-2/+2
|
* 3840Kartik K. Agaram2017-04-201-517/+524
| | | | | | | | Fix CI. Our previous approach was breaking because a test was generating different results depending on what layer you stopped at. Turns out we rename instructions in layer 54. So let's save the original_name in the same layer.
* 3839Kartik K. Agaram2017-04-201-1/+1
| | | | | | Fix CI. In the process I also fixed a bug in the tangle/ utility.
* 3838 - further improve an error messageKartik K. Agaram2017-04-201-473/+478
| | | | | | | Expanded instructions don't seem to be worth the space they take up. Let people think through the types of variables for themselves. Thanks again to Ella Couch.
* 3837Kartik K. Agaram2017-04-191-1/+1
|
* 3820Kartik K. Agaram2017-04-131-422/+471
|
* 3813Kartik K. Agaram2017-04-041-4/+4
|
* 3792Kartik K. Agaram2017-03-121-267/+292
| | | | | | | Bugfix: make sure 'print 0, 0' always does the right thing, no matter how it's overloaded. Thanks Ella Couch for reporting this.
* 3791Kartik K. Agaram2017-03-121-410/+375
| | | | Simpler way to do commit 2929.
* 3764 - better colors for cross-linksKartik K. Agaram2017-03-081-4/+5
|
* 3761Kartik K. Agaram2017-03-071-142/+143
|
* 3752 - fix a couple of segfaultsKartik K. Agaram2017-03-021-1/+1
| | | | Thanks Ella Couch for running into these.
* 3750Kartik K. Agaram2017-03-021-23/+23
|
* 3749Kartik K. Agaram2017-03-021-23/+23
|
* 3746Kartik K. Agaram2017-02-071-1/+1
|
* 3716Kartik K. Agaram2016-12-261-0/+2
| | | | Make hyperlinks less salient in the rendered html since there's so many of them.
* 3713 - cross-link calls with definitions in htmlKartik K. Agaram2016-12-261-114/+114
|
* 3710Kartik K. Agaram2016-12-261-635/+635
| | | | | Turns out we don't need to explicitly add anchors for each line. Vim's TOhtml has magic for that out of the box.
* 3709 - line numbers in htmlKartik K. Agaram2016-12-261-639/+663
| | | | | | Each line number also gets an anchor name, but I'm not hyperlinking them for now because I don't want to encourage bookmarking these links just yet. They aren't permalinks because every revision may change what's at any given line number.
* 3685Kartik K. Agaram2016-11-231-1/+0
|
* 3684Kartik K. Agaram2016-11-231-7/+8
| | | | | | | | | | | | | Trying to find examples where a layer includes complexity just so later layers can hook into it. Resolve_stack is the one big one I've found that isn't just a simple function-call indirection that may later get more complex. Conclusion of a conversation with Stephen Malina: Such examples should make one very nervous, because this sort of creep is how we end up with over-engineered abstractions (http://www.joelonsoftware.com/articles/fog0000000018.html). We need to step very carefully anytime we make the outsider reader's comprehension task harder..
* 3667Kartik K. Agaram2016-11-111-8/+11
|
* 3558Kartik K. Agaram2016-10-221-2/+2
|
* 3544Kartik K. Agaram2016-10-221-1/+1
|
* 3543Kartik K. Agaram2016-10-221-1/+1
|
* 3524Kartik K. Agaram2016-10-201-25/+25
|
* 3431Kartik K. Agaram2016-09-301-53/+55
| | | | | Improvements to syntax highlighting, particularly for Mu code in C++ files.