Skip to content

Commit 7cfbf65

Browse files
authored
removed logs (#490)
1 parent 072d28e commit 7cfbf65

3 files changed

Lines changed: 1 addition & 9 deletions

File tree

‎transpiler/package.json‎

Lines 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.7.1",
3+
"version": "0.7.2",
44
"description": "The one and only Bitloops Language transpiler",
55
"engines": {
66
"node": ">= 13"

‎transpiler/src/ast/core/intermediate-ast/nodes/Entity/EntityValuesNode.ts‎

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ export class EntityValuesNode extends IntermediateASTNode {
111111
if (privateMethodList) {
112112
for (const privateMethod of privateMethodList.getPrivateMethodNodes()) {
113113
const methodName = privateMethod.getIdentifier();
114-
console.log('private method name', methodName);
115114
symbolTableManager.createSymbolTableChildScope(methodName, privateMethod);
116115
symbolTableManager.setCurrentSymbolTable(initialSymbolTable);
117116
}
@@ -121,7 +120,6 @@ export class EntityValuesNode extends IntermediateASTNode {
121120
if (publicMethodList) {
122121
for (const publicMethod of publicMethodList.publicMethods) {
123122
const methodName = publicMethod.getMethodName();
124-
console.log('public method name', methodName);
125123
symbolTableManager.createSymbolTableChildScope(methodName, publicMethod);
126124
symbolTableManager.setCurrentSymbolTable(initialSymbolTable);
127125
}

‎transpiler/src/ast/core/intermediate-ast/nodes/Expression/MemberDot/MemberDotExpressionNode.ts‎

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -381,12 +381,6 @@ export class MemberDotExpressionNode extends ExpressionNode {
381381
const fieldTypes = propsNode.getFieldTypes();
382382
const fieldType = fieldTypes[rightExpressionString];
383383
if (!fieldType) {
384-
console.log({
385-
publicMethodTypes,
386-
privateMethodTypes,
387-
rightExpressionString,
388-
isEntityProp,
389-
});
390384
throw new MissingMemberError(rightExpressionString, leftType, this.getMetadata());
391385
}
392386
return fieldType.getInferredType();

0 commit comments

Comments
 (0)