Searched defs:isCompoundStatement (Results 1 – 2 of 2) sorted by relevance
32 public isCompoundStatement() { return false; } method in AST1304 public isCompoundStatement() { return this.isLoop(); } method in Statement1575 public isCompoundStatement() { return true; } method in IfStatement1906 public isCompoundStatement() { return true; } method in WithStatement1942 public isCompoundStatement() { return true; } method in SwitchStatement2103 public isCompoundStatement() { return true; } method in TryFinally2148 public isCompoundStatement() { return true; } method in TryCatch
2412 AST.prototype.isCompoundStatement = function () { return false; }; method in AST3625 Statement.prototype.isCompoundStatement = function () { return this.isLoop(); }; method in Statement3895 IfStatement.prototype.isCompoundStatement = function () { return true; }; method in IfStatement4221 WithStatement.prototype.isCompoundStatement = function () { return true; }; method in WithStatement4249 SwitchStatement.prototype.isCompoundStatement = function () { return true; }; method in SwitchStatement4406 TryFinally.prototype.isCompoundStatement = function () { return true; }; method in TryFinally4452 TryCatch.prototype.isCompoundStatement = function () { return true; }; method in TryCatch