MCPcopy Index your code
hub / github.com/codecombat/codecombat / createAether

Function createAether

app/assets/javascripts/workers/aether_worker.js:35–42  ·  view source on GitHub ↗
(spellKey, options)

Source from the content-addressed store, hash-verified

33};
34
35var createAether = function (spellKey, options) {
36 ensureLanguageImported(options.language);
37 aethers[spellKey] = new Aether(options);
38 return JSON.stringify({
39 "message": "Created aether for " + spellKey,
40 "function": "createAether"
41 });
42};
43
44var hasChangedSignificantly = function(spellKey, a,b,careAboutLineNumbers,careAboutLint) {
45 var hasChanged = aethers[spellKey].hasChangedSignificantly(a,b,careAboutLineNumbers,careAboutLint);

Callers 1

aether_worker.jsFile · 0.85

Calls 2

ensureLanguageImportedFunction · 0.70
stringifyMethod · 0.45

Tested by

no test coverage detected