UNPKG

dbm

Version:

18 lines (13 loc) 463 B
import Dbm from "../index.js"; import CommandBaseObject from "./CommandBaseObject.js" export default class SetProperty extends CommandBaseObject { _construct() { super._construct(); this.item.setValue("property", null); this.item.setValue("value", null); } perform(aFromObject, aData) { let value = this.getInput("value"); this._resolveSourceWithoutFlow(this.item.property).value = value; } }