pbxproj-dom
Advanced tools
Comparing version 1.0.8 to 1.0.9
18
ast.js
@@ -1,6 +0,12 @@ | ||
var __extends = (this && this.__extends) || function (d, b) { | ||
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
var __extends = (this && this.__extends) || (function () { | ||
var extendStatics = Object.setPrototypeOf || | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
return function (d, b) { | ||
extendStatics(d, b); | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
})(); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
function isJSONNull(json) { | ||
@@ -111,3 +117,3 @@ return typeof json === "undefined"; | ||
function Null() { | ||
return _super.apply(this, arguments) || this; | ||
return _super !== null && _super.apply(this, arguments) || this; | ||
} | ||
@@ -114,0 +120,0 @@ return Null; |
{ | ||
"name": "pbxproj-dom", | ||
"version": "1.0.8", | ||
"version": "1.0.9", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -164,4 +164,4 @@ /* | ||
peg$c19 = function(s1, content, s2) { return new ast.List(s1, content, s2); }, | ||
peg$c20 = /^[a-zA-Z0-9_.\/]/, | ||
peg$c21 = peg$classExpectation([["a", "z"], ["A", "Z"], ["0", "9"], "_", ".", "/"], false, false), | ||
peg$c20 = /^[^(){} \t\n\r=;,]/, | ||
peg$c21 = peg$classExpectation(["(", ")", "{", "}", " ", "\t", "\n", "\r", "=", ";", ","], true, false), | ||
peg$c22 = function(s1, id) { return new ast.Identifier(s1, id); }, | ||
@@ -168,0 +168,0 @@ peg$c23 = "\"", |
24
pbx.js
@@ -1,6 +0,11 @@ | ||
var __extends = (this && this.__extends) || function (d, b) { | ||
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
var __extends = (this && this.__extends) || (function () { | ||
var extendStatics = Object.setPrototypeOf || | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
return function (d, b) { | ||
extendStatics(d, b); | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
})(); | ||
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { | ||
@@ -12,2 +17,3 @@ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var ast = require("./ast"); | ||
@@ -54,3 +60,3 @@ function isProject(obj) { | ||
function PBXProject() { | ||
return _super.apply(this, arguments) || this; | ||
return _super !== null && _super.apply(this, arguments) || this; | ||
} | ||
@@ -74,3 +80,3 @@ Object.defineProperty(PBXProject.prototype, "targets", { | ||
function PBXNativeTarget() { | ||
return _super.apply(this, arguments) || this; | ||
return _super !== null && _super.apply(this, arguments) || this; | ||
} | ||
@@ -98,3 +104,3 @@ Object.defineProperty(PBXNativeTarget.prototype, "name", { | ||
function XCBuildConfiguration() { | ||
return _super.apply(this, arguments) || this; | ||
return _super !== null && _super.apply(this, arguments) || this; | ||
} | ||
@@ -117,3 +123,3 @@ Object.defineProperty(XCBuildConfiguration.prototype, "name", { | ||
function XCConfigurationList() { | ||
return _super.apply(this, arguments) || this; | ||
return _super !== null && _super.apply(this, arguments) || this; | ||
} | ||
@@ -120,0 +126,0 @@ Object.defineProperty(XCConfigurationList.prototype, "buildConfigurations", { |
@@ -0,1 +1,2 @@ | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var ast = require("./parser"); | ||
@@ -12,2 +13,4 @@ var xcode_1 = require("./xcode"); | ||
"tests/proj2.pbxproj", | ||
"tests/proj3.pbxproj", | ||
"tests/proj4.pbxproj", | ||
"tests/signing-style/manual.pbxproj", | ||
@@ -14,0 +17,0 @@ "tests/signing-style/automatic.pbxproj" |
@@ -0,1 +1,2 @@ | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var parser = require("./parser"); | ||
@@ -2,0 +3,0 @@ var pbx = require("./pbx"); |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
77826
16
1911