(spellKey, source)
| 65 | }; |
| 66 | |
| 67 | var lint = function(spellKey, source) { |
| 68 | var currentAether = aethers[spellKey]; |
| 69 | var lintMessages = currentAether.lint(source); |
| 70 | var functionName = "lint"; |
| 71 | var returnObject = { |
| 72 | "lintMessages": lintMessages, |
| 73 | "function": functionName |
| 74 | }; |
| 75 | return JSON.stringify(returnObject); |
| 76 | }; |
| 77 | |
| 78 | var transpile = function(spellKey, source) { |
| 79 | var currentAether = aethers[spellKey]; |
no test coverage detected