function createNode(position, postfix, int) {
    var node = SpelNode.create('op-inc', position, int);

    node.getValue = function (state) {
        var cur = int.getValue(state);