(type)
| 18 | |
| 19 | var keywords = function(){ |
| 20 | function kw(type) {return {type: type, style: "keyword"};} |
| 21 | var A = kw("keyword a"), B = kw("keyword b"), C = kw("keyword c"); |
| 22 | var operator = kw("operator"), atom = {type: "atom", style: "atom"}, attribute = {type:"attribute", style: "attribute"}; |
| 23 | var type = kw("typedef"); |