123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- import CodeNode from './CodeNode.js';
- import FunctionCallNode from './FunctionCallNode.js';
- class FunctionNode extends CodeNode {
- constructor( code = '', includes = [] ) {
- super( code, includes );
- this.keywords = {};
- }
- getNodeType( builder ) {
- return this.getNodeFunction( builder ).type;
- }
- getInputs( builder ) {
- return this.getNodeFunction( builder ).inputs;
- }
- getNodeFunction( builder ) {
- const nodeData = builder.getDataFromNode( this );
- let nodeFunction = nodeData.nodeFunction;
- if ( nodeFunction === undefined ) {
- nodeFunction = builder.parser.parseFunction( this.code );
- nodeData.nodeFunction = nodeFunction;
- }
- return nodeFunction;
- }
- call( parameters = {} ) {
- return new FunctionCallNode( this, parameters );
- }
- generate( builder, output ) {
- super.generate( builder );
- const nodeFunction = this.getNodeFunction( builder );
- const name = nodeFunction.name;
- const type = nodeFunction.type;
- const nodeCode = builder.getCodeFromNode( this, type );
- if ( name !== '' ) {
- // use a custom property name
- nodeCode.name = name;
- }
- const propertyName = builder.getPropertyName( nodeCode );
- let code = this.getNodeFunction( builder ).getCode( propertyName );
- const keywords = this.keywords;
- const keywordsProperties = Object.keys( keywords );
- if ( keywordsProperties.length > 0 ) {
- for ( const property of keywordsProperties ) {
- const propertyRegExp = new RegExp( `\\b${property}\\b`, 'g' );
- const nodeProperty = keywords[ property ].build( builder, 'property' );
- code = code.replace( propertyRegExp, nodeProperty );
- }
- }
- nodeCode.code = code;
- if ( output === 'property' ) {
- return propertyName;
- } else {
- return builder.format( `${ propertyName }()`, type, output );
- }
- }
- }
- export default FunctionNode;
|