Packages

class ReporterApp extends Application with Expression

represents a reporter application. This is the typical kind of NetLogo expression, things like "round 5" and "3 + 4". However, this class also represents things like constants, which are converted into no-arg reporter applications as they're parsed.

Source
AstNode.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReporterApp
  2. Expression
  3. Application
  4. AstNode
  5. SourceLocatable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ReporterApp(reporter: Reporter, location: SourceLocation)
  2. new ReporterApp(reporter: Reporter, args: Seq[Expression], sourceLocation: SourceLocation)

Value Members

  1. val args: Seq[Expression]
    Definition Classes
    ReporterAppApplication
  2. def changeLocation(newLocation: SourceLocation): ReporterApp
    Definition Classes
    ReporterAppExpression
  3. def copy(reporter: Reporter = reporter, args: Seq[Expression] = args, location: SourceLocation = sourceLocation): ReporterApp
  4. def end: Int
    Definition Classes
    SourceLocatable
  5. def filename: String
    Definition Classes
    SourceLocatable
  6. def instruction: Reporter

    the args for this application.

    the args for this application.

    Definition Classes
    ReporterAppApplication
  7. def reportedType(): Int

    returns the type of this expression.

    returns the type of this expression. Generally synthesized from types of subexpressions.

    Definition Classes
    ReporterAppExpression
  8. var reporter: Reporter
  9. val sourceLocation: SourceLocation
    Definition Classes
    ReporterAppSourceLocatable
  10. def start: Int
    Definition Classes
    SourceLocatable
  11. def toString(): String
    Definition Classes
    ReporterApp → AnyRef → Any
  12. def withArguments(args: Seq[Expression]): ReporterApp