Module Simula

Class StandardProcedure

All Implemented Interfaces:
Externalizable, Serializable

public final class StandardProcedure extends ProcedureDeclaration
Standard Procedure.

Link to GitHub: Source File.

Author:
Øystein Myhre Andersen
See Also:
  • Constructor Details

    • StandardProcedure

      StandardProcedure(DeclarationScope declaredIn, Declaration.Kind kind, Type type, String ident)
      Create a new StandardProcedure without parameters.
      Parameters:
      declaredIn - the enclosing scope
      kind - the declaration kind
      type - the procedure's type
      ident - the procedure identifier
    • StandardProcedure

      StandardProcedure(DeclarationScope declaredIn, Declaration.Kind kind, Type type, String ident, Parameter... param)
      Create a new StandardProcedure with parameters.
      Parameters:
      declaredIn - the enclosing scope
      kind - the declaration kind
      type - the procuedre's type
      ident - the procedure identifier
      param - the parameters
    • StandardProcedure

      public StandardProcedure()
      Default constructor used by Externalization.
  • Method Details