UNPKG

483 BJavaScriptView Raw
1var FS = require("fs");
2var Path = require("path");
3
4
5var FileSystem = function(packagePath) {
6 FileSystem_createSourceClass.call(this);
7};
8
9
10function FileSystem_createSourceClass() {
11 var that = this;
12
13 var Source = function(filename, path) {
14
15 };
16
17 Source.prototype.getAbsolutePath = function() {
18 return this._abspath;
19 };
20
21 this.Source = Source;
22}
23
24/**
25 * @return void
26 */
27FileSystem.prototype.load = function(filename) {
28 var that = this;
29
30
31};
32
33
34