Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a042a65

Browse filesBrowse files
authored
v0.6.3 (#463)
1 parent c5e1585 commit a042a65
Copy full SHA for a042a65

File tree

Expand file treeCollapse file tree

3 files changed

+5
-3
lines changed
Filter options
Expand file treeCollapse file tree

3 files changed

+5
-3
lines changed

‎transpiler/__tests__/end-to-end/mocks/entity-primitives/arrays/array-of-vo.bl

Copy file name to clipboardExpand all lines: transpiler/__tests__/end-to-end/mocks/entity-primitives/arrays/array-of-vo.bl
+3-1Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ Props DocumentProps {
77
}
88

99
Root Entity DocumentEntity {
10-
static create(props: DocumentProps): (OK(DocumentEntity), Errors()) { }
10+
static create(props: DocumentProps): (OK(DocumentEntity), Errors()) {
11+
return DocumentEntity(props);
12+
}
1113
}
1214

1315
// **** Row Entity ****

‎transpiler/package.json

Copy file name to clipboardExpand all lines: transpiler/package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bitloops/bl-transpiler",
3-
"version": "0.6.2",
3+
"version": "0.6.3",
44
"description": "The one and only Bitloops Language transpiler",
55
"engines": {
66
"node": ">= 13"

‎transpiler/src/target/typescript-nest/core/components/statements/expression/evaluation/entityConstructorEvaluation.ts

Copy file name to clipboardExpand all lines: transpiler/src/target/typescript-nest/core/components/statements/expression/evaluation/entityConstructorEvaluation.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export const domainEvaluationToTargetLanguage = (
5959
const domainName = getDomainName(evaluation);
6060

6161
return {
62-
output: `new ${domainName}(${resultDomainProps.output});`,
62+
output: `new ${domainName}(${resultDomainProps.output})`,
6363
dependencies,
6464
};
6565
};

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.