コード例 #1
0
ファイル: NodeFactory.cs プロジェクト: vrajeshbhavsar/mcjs
 public TryStatement MakeTryStatement(IStatement statement, ICatch catchClause, IFinally finallyClause)
 {
     return(new TryStatement((Statement)statement, (CatchClause)catchClause, (FinallyClause)finallyClause));
 }
コード例 #2
0
ファイル: NodeFactory.cs プロジェクト: reshadi2/mcjs
 public TryStatement MakeTryStatement(IStatement statement, ICatch catchClause, IFinally finallyClause)
 {
   return new TryStatement((Statement)statement, (CatchClause)catchClause, (FinallyClause)finallyClause);
 }
コード例 #3
0
ファイル: Finally.cs プロジェクト: avaranovich/truesight-lite
 public bool Equals(IFinally other)
 {
     return(Equals(other as Finally));
 }