aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/src/tree/delegate.js
diff options
context:
space:
mode:
authorDanijel Andjelkovic <adanijel99@gmail.com>2022-03-01 21:54:41 +0100
committerDanijel Andjelkovic <adanijel99@gmail.com>2022-03-01 21:54:41 +0100
commit6c8128f9fd5a5d0be115806c35a21b3d683df8d6 (patch)
treef46c2f6b3b9b294ff32bd75c08ccdc9e7a8cc4ef /sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/src/tree/delegate.js
parent2400b84e95913665da6279114168148444b8f9ab (diff)
parent7d3640f824f46490b47bd95f1c5a16644f712068 (diff)
Merge branch 'dev' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into logo
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/src/tree/delegate.js')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/src/tree/delegate.js71
1 files changed, 71 insertions, 0 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/src/tree/delegate.js b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/src/tree/delegate.js
new file mode 100644
index 00000000..f63990b1
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/src/tree/delegate.js
@@ -0,0 +1,71 @@
+"use strict";
+/**
+ * @license
+ * Copyright Google LLC All Rights Reserved.
+ *
+ * Use of this source code is governed by an MIT-style license that can be
+ * found in the LICENSE file at https://angular.io/license
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.DelegateTree = void 0;
+const interface_1 = require("./interface");
+class DelegateTree {
+ constructor(_other) {
+ this._other = _other;
+ }
+ branch() {
+ return this._other.branch();
+ }
+ merge(other, strategy) {
+ this._other.merge(other, strategy);
+ }
+ get root() {
+ return this._other.root;
+ }
+ // Readonly.
+ read(path) {
+ return this._other.read(path);
+ }
+ exists(path) {
+ return this._other.exists(path);
+ }
+ get(path) {
+ return this._other.get(path);
+ }
+ getDir(path) {
+ return this._other.getDir(path);
+ }
+ visit(visitor) {
+ return this._other.visit(visitor);
+ }
+ // Change content of host files.
+ overwrite(path, content) {
+ return this._other.overwrite(path, content);
+ }
+ beginUpdate(path) {
+ return this._other.beginUpdate(path);
+ }
+ commitUpdate(record) {
+ return this._other.commitUpdate(record);
+ }
+ // Structural methods.
+ create(path, content) {
+ return this._other.create(path, content);
+ }
+ delete(path) {
+ return this._other.delete(path);
+ }
+ rename(from, to) {
+ return this._other.rename(from, to);
+ }
+ apply(action, strategy) {
+ return this._other.apply(action, strategy);
+ }
+ get actions() {
+ return this._other.actions;
+ }
+ [interface_1.TreeSymbol]() {
+ return this;
+ }
+}
+exports.DelegateTree = DelegateTree;