This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [object calling:5 aselector:6]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @implementation Class : CPObject | |
| { | |
| int x; | |
| } | |
| - (void)something:(id)object else:(id)rhs | |
| { | |
| [self calling:5 aselector:6]; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mapping["/plugins"] = function(env) | |
| { | |
| var response = new JACK.Response(), | |
| pluginURLs = [], | |
| userPluginsPath = FILE.join(applicationSupportPath, "Plugins"), | |
| builtInPluginsPath = FILE.join(editorPath, "Resources", "Plugins"); | |
| new JAKE.FileList(builtInPluginsPath, "*.atlasproj")).forEach(function(/*String*/ aPath) | |
| { | |
| pluginURLs.push(EXTERNALIZE(aPath)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <% | |
| class MethodDefinition | |
| attr_accessor :class_method | |
| attr_accessor :return_type | |
| attr_accessor :selector_parts | |
| def initialize(class_method, return_type, selector_parts) | |
| @return_type = return_type |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "class": | |
| { | |
| "path": "/sources/source.js.objj/meta.implementation.js.objj[normalize-space(string(entity.name.type.js.objj))="+class_name+"]", | |
| "methods": | |
| { | |
| "path":".//meta.function.js.objj" | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @import <Foundation/Foundation.j> | |
| var input = require("file").read("in.txt", { charset:"UTF-8" }), | |
| STRING_RE = new RegExp("\"[^\"\\\\]*(\\\\[\\s\\S][^\"\\\\]*)*\"|\'[^\'\\\\]*(\\\\[\\s\\S][^\'\\\\]*)*\'", "g"), | |
| strings = input.match(STRING_RE); | |
| var index = 0, | |
| count = strings.length, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Francisco-Tolmaskys-MacBook:socratic_package tolmasky$ objj main.j | |
| Notice: objj is incompatible with "jsc" engine. Automatically running with "rhino" engine instead. | |
| Jack is starting up using Simple on port 8080 | |
| Views/Cappuccino/showdown/Info.plist: file not found | |
| Views/Cappuccino/EJS/Info.plist: file not found | |
| Views/Cappuccino/showdown/compressed/Info.plist: file not found | |
| git://github.com/280north/cappuccino.git | |
| command: git clone git://github.com/280north/cappuccino.git source-repo0.8198662623824805 | |
| AppKit/_CPCornerView.j | |
| {"socratic_children":{},"socratic_name":"AppKit/_CPCornerView.j"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for (;($E.i < $E.l); ++$E.i) | |
| sum+=$E.o0[$E.i]*2; | |
| VS. | |
| for (;($E.i < $E.l) && ((object = $E.o0[$E.i]) || YES); ++$E.i) | |
| sum+=object*2; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function fast_return(self) | |
| { | |
| return 5; | |
| } | |
| function slow_return(object) | |
| { | |
| with(object) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script> | |
| function just_do_it() | |
| { | |
| var video = document.getElementById("video"); |