UNPKG

372 BJavaScriptView Raw
1'use strict'
2
3function factory (type, config, load, typed) {
4 /**
5 * @constructor UpdateNode
6 */
7 function UpdateNode () {
8 // TODO: deprecated since v3. Cleanup some day
9 throw new Error('UpdateNode is deprecated. Use AssignmentNode instead.')
10 }
11
12 return UpdateNode
13}
14
15exports.name = 'UpdateNode'
16exports.path = 'expression.node'
17exports.factory = factory