aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/src/tree/delegate.js
diff options
context:
space:
mode:
authorNevena Bojovic <nenabojov@gmail.com>2022-03-01 20:05:50 +0100
committerNevena Bojovic <nenabojov@gmail.com>2022-03-01 20:05:50 +0100
commit291803c31f829fe0d32bb3207bc11def95a7408c (patch)
treec7d43107d79291b19d8c9eceefbe91c9f9a52acf /sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/src/tree/delegate.js
parent1fa69862057db4db53cfda5be9c24b4228ef63f7 (diff)
Urađena test aplikacija. Povezan front i back.
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;