Class: Update

Update(oldVal, newVal, originnullable)

Data class representing an update on a node. Contains information about the old and new value.

Constructor

new Update(oldVal, newVal, originnullable)

Construct a new Update instance.
Parameters:
Name Type Attributes Default Description
oldVal String The old value of the attribute or text content.
newVal String The new value of the attribute or text content.
origin Number <nullable>
null The ID of the branch this change belongs to.
Source:

Classes

Update

Members

newVal

The new value of the attribute or text content.
Source:

oldVal

The old value of the attribute or text content.
Source:

(nullable) origin :Number

The ID of the branch this change belongs to. Null if the update does not occur in a merge context.
Type:
  • Number
Source:

Methods

copy() → {Update}

Source:
Returns:
A copy by value of this instance.
Type
Update