From f3f0a1950215b7ba5131a5ff4b850b833699b2e1 Mon Sep 17 00:00:00 2001 From: Adhitya Kamakshidasan Date: Tue, 12 Jul 2016 00:37:14 +0530 Subject: A bit of beauty --- data_structures_correct/c_block.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'data_structures_correct/c_block.js') diff --git a/data_structures_correct/c_block.js b/data_structures_correct/c_block.js index ac826b2..1cb86e7 100644 --- a/data_structures_correct/c_block.js +++ b/data_structures_correct/c_block.js @@ -1,7 +1,7 @@ function c_block() { c_block.prototype.define = function c_block() { - + this.in1 = 1; this.out = 1; this.rpar = []; @@ -28,7 +28,6 @@ function c_block() { return new BasicBlock(this.x); } c_block.prototype.details = function c_block() { - return this.x; } } -- cgit