(str)
| 187 | }); |
| 188 | |
| 189 | function words(str) { |
| 190 | var obj = {}, words = str.split(" "); |
| 191 | for (var i = 0; i < words.length; ++i) obj[words[i]] = true; |
| 192 | return obj; |
| 193 | } |
| 194 | |
| 195 | var blockKeywords = "body catch class do else enum for foreach foreach_reverse if in interface mixin " + |
| 196 | "out scope struct switch try union unittest version while with"; |