toloframework
Version:
Javascript/HTML/CSS compiler for Firefox OS or nodewebkit apps using modules in the nodejs style.
35 lines (20 loc) • 483 B
JavaScript
var FS = require("fs");
var Path = require("path");
var FileSystem = function(packagePath) {
FileSystem_createSourceClass.call(this);
};
function FileSystem_createSourceClass() {
var that = this;
var Source = function(filename, path) {
};
Source.prototype.getAbsolutePath = function() {
return this._abspath;
};
this.Source = Source;
}
/**
* @return void
*/
FileSystem.prototype.load = function(filename) {
var that = this;
};