(delim)
| 5 | return obj; |
| 6 | } |
| 7 | function heredoc(delim) { |
| 8 | return function(stream, state) { |
| 9 | if (stream.match(delim)) state.tokenize = null; |
| 10 | else stream.skipToEnd(); |
| 11 | return "string"; |
| 12 | } |
| 13 | } |
| 14 | var phpConfig = { |
| 15 | name: "clike", |
| 16 | keywords: keywords("abstract and array as break case catch class clone const continue declare default " + |