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 20:21:29 +0000
committerDanijel Andjelkovic <adanijel99@gmail.com>2022-03-01 20:21:29 +0000
commit61cb1570a3410c85a4489b97c172e3a50715f36c (patch)
tree8fe4a5b77ea54bba80abc817ce2c9ef0e79e7e66 /sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/src/tree/delegate.js
parent21a53d349788c99d2007cba91a923db982353b31 (diff)
parenta9ee9e0a500a4a15bd0b5dcaf041f827228ed309 (diff)
Merge branch 'researchML' into 'dev'
Research ml See merge request igrannonica/neuronstellar!6
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;