Esempio n. 1
0
  //
  // called by the .end field directive to end 'prompted' field
  //
  void endField() throws jasError {
    if (cur_field == null) throw new jasError(".end field without .field");

    if (cur_annotation != null) opened_annotation("field");

    class_env.addField(cur_field);
    cur_field = null;
  }