use :node;

var Node = module.require('../Node').Node;

fn ThisExpression()

extends Node {

this.type = 'ThisExpression';

}

ThisExpression.prototype.codegen = () -> {

if !super.codegen() {
  return;
}

return this;

};

ThisExpression.prototype.hasCallExpression = () -> false;

exports.ThisExpression = ThisExpression;