store_value_address.ts 306 B

123456789
  1. import { StoreValue } from "./store_value";
  2. import { IType } from "../../../typeSystem/itype";
  3. export class StoreValueAddress extends StoreValue {
  4. constructor (type: IType, value: any, public line: number, public column?: number, id?:String, isConst = false) {
  5. super(type,value,id, isConst);
  6. }
  7. }