Index: tools/turbolizer/node.js |
diff --git a/tools/turbolizer/node.js b/tools/turbolizer/node.js |
index 304b29492409570bb7f99b0b43af442e791ec1b5..18b74d021882709a6934e89f8e038422f385979d 100644 |
--- a/tools/turbolizer/node.js |
+++ b/tools/turbolizer/node.js |
@@ -21,6 +21,9 @@ var Node = { |
isInput: function() { |
return this.opcode == 'Parameter' || this.opcode.endsWith('Constant'); |
}, |
+ isLive: function() { |
+ return this.live; |
+ }, |
isJavaScript: function() { |
return this.opcode.startsWith('JS'); |
}, |