Skip to content

Commit

Permalink
chore: self mutation (build.diff)
Browse files Browse the repository at this point in the history
Signed-off-by: monada-bot[bot] <[email protected]>
  • Loading branch information
monadabot committed Sep 27, 2024
1 parent 2281567 commit 441837c
Show file tree
Hide file tree
Showing 110 changed files with 1,093 additions and 109 deletions.
12 changes: 11 additions & 1 deletion packages/@winglang/wingc/src/dtsify/snapshots/declarations.snap
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
source: libs/wingc/src/dtsify/mod.rs
source: packages/@winglang/wingc/src/dtsify/mod.rs
---
## Code

Expand Down Expand Up @@ -104,6 +104,7 @@ const $macros = require("@winglang/sdk/lib/macros");
const std = $stdlib.std;
const $helpers = $stdlib.helpers;
const $extern = $helpers.createExternRequire(__dirname);
const $types = require("./types.cjs");
const $preflightTypesMap = {};
Object.assign(module.exports, $helpers.bringJs(`${__dirname}/preflight.lib-1.cjs`, $preflightTypesMap));
module.exports = { ...module.exports, $preflightTypesMap };
Expand All @@ -125,6 +126,7 @@ const $macros = require("@winglang/sdk/lib/macros");
const std = $stdlib.std;
const $helpers = $stdlib.helpers;
const $extern = $helpers.createExternRequire(__dirname);
const $types = require("./types.cjs");
let $preflightTypesMap = {};
class InflightClass extends $stdlib.std.Resource {
constructor($scope, $id, ) {
Expand Down Expand Up @@ -267,3 +269,11 @@ export class Child$Inflight extends ParentClass$Inflight implements ClassInterfa
}
```
## types.cjs
```js
const std = require("@winglang/sdk").std;
const $types = {};
module.exports = $types;
```
12 changes: 11 additions & 1 deletion packages/@winglang/wingc/src/dtsify/snapshots/optionals.snap
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
source: libs/wingc/src/dtsify/mod.rs
source: packages/@winglang/wingc/src/dtsify/mod.rs
---
## Code

Expand Down Expand Up @@ -46,6 +46,7 @@ const $macros = require("@winglang/sdk/lib/macros");
const std = $stdlib.std;
const $helpers = $stdlib.helpers;
const $extern = $helpers.createExternRequire(__dirname);
const $types = require("./types.cjs");
const $preflightTypesMap = {};
Object.assign(module.exports, $helpers.bringJs(`${__dirname}/preflight.lib-1.cjs`, $preflightTypesMap));
module.exports = { ...module.exports, $preflightTypesMap };
Expand All @@ -67,6 +68,7 @@ const $macros = require("@winglang/sdk/lib/macros");
const std = $stdlib.std;
const $helpers = $stdlib.helpers;
const $extern = $helpers.createExternRequire(__dirname);
const $types = require("./types.cjs");
let $preflightTypesMap = {};
class ParentClass extends $stdlib.std.Resource {
constructor($scope, $id, ) {
Expand Down Expand Up @@ -125,3 +127,11 @@ export class ParentClass$Inflight implements ClassInterface$Inflight
}
```
## types.cjs
```js
const std = require("@winglang/sdk").std;
const $types = {};
module.exports = $types;
```
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
source: libs/wingc/src/jsify/tests.rs
source: packages/@winglang/wingc/src/jsify/tests.rs
---
## Code

Expand Down Expand Up @@ -51,6 +51,7 @@ const $wing_is_test = process.env.WING_IS_TEST === "true";
const std = $stdlib.std;
const $helpers = $stdlib.helpers;
const $extern = $helpers.createExternRequire(__dirname);
const $types = require("./types.cjs");
const $PlatformManager = new $stdlib.platform.PlatformManager({platformPaths: $platforms});
class $Root extends $stdlib.std.Resource {
constructor($scope, $id) {
Expand Down Expand Up @@ -95,3 +96,11 @@ $APP.synth();
//# sourceMappingURL=preflight.cjs.map
```

## types.cjs

```js
const std = require("@winglang/sdk").std;
const $types = {};
module.exports = $types;
```

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
source: libs/wingc/src/jsify/tests.rs
source: packages/@winglang/wingc/src/jsify/tests.rs
---
## Code

Expand Down Expand Up @@ -48,6 +48,7 @@ const $wing_is_test = process.env.WING_IS_TEST === "true";
const std = $stdlib.std;
const $helpers = $stdlib.helpers;
const $extern = $helpers.createExternRequire(__dirname);
const $types = require("./types.cjs");
const $PlatformManager = new $stdlib.platform.PlatformManager({platformPaths: $platforms});
class $Root extends $stdlib.std.Resource {
constructor($scope, $id) {
Expand Down Expand Up @@ -88,3 +89,11 @@ $APP.synth();
//# sourceMappingURL=preflight.cjs.map
```

## types.cjs

```js
const std = require("@winglang/sdk").std;
const $types = {};
module.exports = $types;
```

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
source: libs/wingc/src/jsify/tests.rs
source: packages/@winglang/wingc/src/jsify/tests.rs
---
## Code

Expand Down Expand Up @@ -48,6 +48,7 @@ const $wing_is_test = process.env.WING_IS_TEST === "true";
const std = $stdlib.std;
const $helpers = $stdlib.helpers;
const $extern = $helpers.createExternRequire(__dirname);
const $types = require("./types.cjs");
const $PlatformManager = new $stdlib.platform.PlatformManager({platformPaths: $platforms});
class $Root extends $stdlib.std.Resource {
constructor($scope, $id) {
Expand Down Expand Up @@ -88,3 +89,11 @@ $APP.synth();
//# sourceMappingURL=preflight.cjs.map
```

## types.cjs

```js
const std = require("@winglang/sdk").std;
const $types = {};
module.exports = $types;
```

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
source: libs/wingc/src/jsify/tests.rs
source: packages/@winglang/wingc/src/jsify/tests.rs
---
## Code

Expand Down Expand Up @@ -71,6 +71,7 @@ const $wing_is_test = process.env.WING_IS_TEST === "true";
const std = $stdlib.std;
const $helpers = $stdlib.helpers;
const $extern = $helpers.createExternRequire(__dirname);
const $types = require("./types.cjs");
const $PlatformManager = new $stdlib.platform.PlatformManager({platformPaths: $platforms});
class $Root extends $stdlib.std.Resource {
constructor($scope, $id) {
Expand Down Expand Up @@ -137,3 +138,11 @@ $APP.synth();
//# sourceMappingURL=preflight.cjs.map
```

## types.cjs

```js
const std = require("@winglang/sdk").std;
const $types = {};
module.exports = $types;
```

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
source: libs/wingc/src/jsify/tests.rs
source: packages/@winglang/wingc/src/jsify/tests.rs
---
## Code

Expand Down Expand Up @@ -67,6 +67,7 @@ const $wing_is_test = process.env.WING_IS_TEST === "true";
const std = $stdlib.std;
const $helpers = $stdlib.helpers;
const $extern = $helpers.createExternRequire(__dirname);
const $types = require("./types.cjs");
const $PlatformManager = new $stdlib.platform.PlatformManager({platformPaths: $platforms});
class $Root extends $stdlib.std.Resource {
constructor($scope, $id) {
Expand Down Expand Up @@ -125,3 +126,11 @@ $APP.synth();
//# sourceMappingURL=preflight.cjs.map
```

## types.cjs

```js
const std = require("@winglang/sdk").std;
const $types = {};
module.exports = $types;
```

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
source: libs/wingc/src/jsify/tests.rs
source: packages/@winglang/wingc/src/jsify/tests.rs
---
## Code

Expand Down Expand Up @@ -61,6 +61,7 @@ const $wing_is_test = process.env.WING_IS_TEST === "true";
const std = $stdlib.std;
const $helpers = $stdlib.helpers;
const $extern = $helpers.createExternRequire(__dirname);
const $types = require("./types.cjs");
const $PlatformManager = new $stdlib.platform.PlatformManager({platformPaths: $platforms});
class $Root extends $stdlib.std.Resource {
constructor($scope, $id) {
Expand Down Expand Up @@ -117,3 +118,11 @@ $APP.synth();
//# sourceMappingURL=preflight.cjs.map
```

## types.cjs

```js
const std = require("@winglang/sdk").std;
const $types = {};
module.exports = $types;
```

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
source: libs/wingc/src/jsify/tests.rs
source: packages/@winglang/wingc/src/jsify/tests.rs
---
## Code

Expand Down Expand Up @@ -78,6 +78,7 @@ const $wing_is_test = process.env.WING_IS_TEST === "true";
const std = $stdlib.std;
const $helpers = $stdlib.helpers;
const $extern = $helpers.createExternRequire(__dirname);
const $types = require("./types.cjs");
const $PlatformManager = new $stdlib.platform.PlatformManager({platformPaths: $platforms});
class $Root extends $stdlib.std.Resource {
constructor($scope, $id) {
Expand Down Expand Up @@ -148,3 +149,11 @@ $APP.synth();
//# sourceMappingURL=preflight.cjs.map
```
## types.cjs
```js
const std = require("@winglang/sdk").std;
const $types = {};
module.exports = $types;
```
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
source: libs/wingc/src/jsify/tests.rs
source: packages/@winglang/wingc/src/jsify/tests.rs
---
## Code

Expand Down Expand Up @@ -76,6 +76,7 @@ const $wing_is_test = process.env.WING_IS_TEST === "true";
const std = $stdlib.std;
const $helpers = $stdlib.helpers;
const $extern = $helpers.createExternRequire(__dirname);
const $types = require("./types.cjs");
const $PlatformManager = new $stdlib.platform.PlatformManager({platformPaths: $platforms});
class $Root extends $stdlib.std.Resource {
constructor($scope, $id) {
Expand Down Expand Up @@ -131,3 +132,11 @@ $APP.synth();
//# sourceMappingURL=preflight.cjs.map
```

## types.cjs

```js
const std = require("@winglang/sdk").std;
const $types = {};
module.exports = $types;
```

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
source: libs/wingc/src/jsify/tests.rs
source: packages/@winglang/wingc/src/jsify/tests.rs
---
## Code

Expand Down Expand Up @@ -66,6 +66,7 @@ const $wing_is_test = process.env.WING_IS_TEST === "true";
const std = $stdlib.std;
const $helpers = $stdlib.helpers;
const $extern = $helpers.createExternRequire(__dirname);
const $types = require("./types.cjs");
const $PlatformManager = new $stdlib.platform.PlatformManager({platformPaths: $platforms});
class $Root extends $stdlib.std.Resource {
constructor($scope, $id) {
Expand Down Expand Up @@ -121,3 +122,11 @@ $APP.synth();
//# sourceMappingURL=preflight.cjs.map
```

## types.cjs

```js
const std = require("@winglang/sdk").std;
const $types = {};
module.exports = $types;
```

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
source: libs/wingc/src/jsify/tests.rs
source: packages/@winglang/wingc/src/jsify/tests.rs
---
## Code

Expand Down Expand Up @@ -70,6 +70,7 @@ const $wing_is_test = process.env.WING_IS_TEST === "true";
const std = $stdlib.std;
const $helpers = $stdlib.helpers;
const $extern = $helpers.createExternRequire(__dirname);
const $types = require("./types.cjs");
const $PlatformManager = new $stdlib.platform.PlatformManager({platformPaths: $platforms});
class $Root extends $stdlib.std.Resource {
constructor($scope, $id) {
Expand Down Expand Up @@ -131,3 +132,11 @@ $APP.synth();
//# sourceMappingURL=preflight.cjs.map
```
## types.cjs
```js
const std = require("@winglang/sdk").std;
const $types = {};
module.exports = $types;
```
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
source: libs/wingc/src/jsify/tests.rs
source: packages/@winglang/wingc/src/jsify/tests.rs
---
## Code

Expand Down Expand Up @@ -70,6 +70,7 @@ const $wing_is_test = process.env.WING_IS_TEST === "true";
const std = $stdlib.std;
const $helpers = $stdlib.helpers;
const $extern = $helpers.createExternRequire(__dirname);
const $types = require("./types.cjs");
const $PlatformManager = new $stdlib.platform.PlatformManager({platformPaths: $platforms});
class $Root extends $stdlib.std.Resource {
constructor($scope, $id) {
Expand Down Expand Up @@ -131,3 +132,11 @@ $APP.synth();
//# sourceMappingURL=preflight.cjs.map
```
## types.cjs
```js
const std = require("@winglang/sdk").std;
const $types = {};
module.exports = $types;
```
11 changes: 10 additions & 1 deletion packages/@winglang/wingc/src/jsify/snapshots/builtins.snap
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
source: libs/wingc/src/jsify/tests.rs
source: packages/@winglang/wingc/src/jsify/tests.rs
---
## Code

Expand Down Expand Up @@ -46,6 +46,7 @@ const $wing_is_test = process.env.WING_IS_TEST === "true";
const std = $stdlib.std;
const $helpers = $stdlib.helpers;
const $extern = $helpers.createExternRequire(__dirname);
const $types = require("./types.cjs");
const $PlatformManager = new $stdlib.platform.PlatformManager({platformPaths: $platforms});
class $Root extends $stdlib.std.Resource {
constructor($scope, $id) {
Expand Down Expand Up @@ -82,3 +83,11 @@ $APP.synth();
//# sourceMappingURL=preflight.cjs.map
```

## types.cjs

```js
const std = require("@winglang/sdk").std;
const $types = {};
module.exports = $types;
```

Loading

0 comments on commit 441837c

Please sign in to comment.