Esempio n. 1
0
 /**
  * Creates a new I/O type declaration from a stream type.
  *
  * @param context Context this statement appears in
  * @param st I/O types of the stream
  */
 public StmtSetTypes(FEContext context, StreamType st) {
   super(context);
   this.inType = st.getIn();
   this.outType = st.getOut();
 }