From 8f5ffe2e65cdd9981a329f10285390dfe3d42001 Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Thu, 1 Mar 2012 16:09:37 -0800 Subject: [PATCH] jscocoa is no longer a thing --- src/stdlib/fs.coffee | 1 - src/stdlib/jscocoa.coffee | 13 ------------- 2 files changed, 14 deletions(-) delete mode 100644 src/stdlib/jscocoa.coffee diff --git a/src/stdlib/fs.coffee b/src/stdlib/fs.coffee index f888b0c91..cfd34b347 100644 --- a/src/stdlib/fs.coffee +++ b/src/stdlib/fs.coffee @@ -3,7 +3,6 @@ _ = require 'underscore' $ = require 'jquery' -jscocoa = require 'jscocoa' module.exports = # Make the given path absolute by resolving it against the diff --git a/src/stdlib/jscocoa.coffee b/src/stdlib/jscocoa.coffee deleted file mode 100644 index 01dca2228..000000000 --- a/src/stdlib/jscocoa.coffee +++ /dev/null @@ -1,13 +0,0 @@ -# This is where we put things from JSCocoa's class.js file - -exports.outArgument = (args...) -> - # Derive to store some javascript data in the internal hash - if not @outArgument2? - OSX.JSCocoa.createClass_parentClass_ 'JSCocoaOutArgument2', 'JSCocoaOutArgument' - - o = OSX.JSCocoaOutArgument2.instance - o.isOutArgument = true - if args.length == 2 - o.mateWithMemoryBuffer_atIndex_ args[0], args[1] - o -