Skip to content

Instantly share code, notes, and snippets.

@nathanathan
Created October 28, 2012 20:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nathanathan/3969887 to your computer and use it in GitHub Desktop.
Save nathanathan/3969887 to your computer and use it in GitHub Desktop.
s_exp list
{
"category": "s_exp",
"components": [
"(",
{"category": "s_list"},
")"
],
"implementation": "function (components) {return components.at(1).at(0)(components.at(1).slice(1));}",
"asyncImpl": "components.at(1, function(component){ component.atAll(0, function(components) { callback(components[0](components.at(1).slice(1))); }); })"
}
@nathanathan
Copy link
Author

I don't know what to use for the thisArg of apply.

@nathanathan
Copy link
Author

Change of plans, never mind the last comment. I wish I could delete these.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment