UNPKG

three

Version:

JavaScript 3D library

18 lines (11 loc) 452 B
/** * @author sunag / http://www.sunag.com.br/ */ import { FunctionNode } from './FunctionNode.js'; function ExpressionNode( src, type, keywords, extensions, includes ) { FunctionNode.call( this, src, includes, extensions, keywords, type ); } ExpressionNode.prototype = Object.create( FunctionNode.prototype ); ExpressionNode.prototype.constructor = ExpressionNode; ExpressionNode.prototype.nodeType = "Expression"; export { ExpressionNode };