summaryrefslogtreecommitdiff
path: root/src/engine/components/LambdaTerm.ts
blob: 63e9889a2d84f4c8a97c8d8d32b472ccd40dbca9 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { Component, ComponentNames } from ".";

export class LambdaTerm extends Component {
  public code: string;

  constructor(code: string) {
    super(ComponentNames.LambdaTerm);

    this.code = code;
  }
}