Skip to content

Commit 46cdc82

Browse files
committed
clean up a bit
1 parent ed39081 commit 46cdc82

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
cd $TRAVIS_BUILD_DIR/tests/allocators/buddy && npm run build && cd .. && npm test buddy &&
1818
cd $TRAVIS_BUILD_DIR/tests/allocators/tlsf && npm run build && cd .. && npm test tlsf;
1919
fi
20-
env: Runs the tests on node.js LTS
20+
env: Runs the tests on node.js LTS, also tests allocators
2121
- node_js: node
2222
script:
2323
- npm run all

src/diagnostics.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,8 +274,8 @@ export abstract class DiagnosticEmitter {
274274
var message = DiagnosticMessage.create(code, category, arg0, arg1, arg2).withRange(range);
275275
if (relatedRange) message.relatedRange = relatedRange;
276276
this.diagnostics.push(message);
277-
console.log(formatDiagnosticMessage(message, true, true) + "\n"); // temporary
278-
console.log(<string>new Error("stack").stack);
277+
// console.log(formatDiagnosticMessage(message, true, true) + "\n"); // temporary
278+
// console.log(<string>new Error("stack").stack);
279279
}
280280

281281
/** Emits an informatory diagnostic message. */

0 commit comments

Comments
 (0)