43 lines
749 B
JavaScript
43 lines
749 B
JavaScript
import TempNode from '../core/Node.js';
|
|
|
|
class JoinNode extends TempNode {
|
|
|
|
constructor( nodes = [] ) {
|
|
|
|
super();
|
|
|
|
this.nodes = nodes;
|
|
|
|
}
|
|
|
|
getNodeType( builder ) {
|
|
|
|
return builder.getTypeFromLength( this.nodes.reduce( ( count, cur ) => count + builder.getTypeLength( cur.getNodeType( builder ) ), 0 ) );
|
|
|
|
}
|
|
|
|
generate( builder, output ) {
|
|
|
|
const type = this.getNodeType( builder );
|
|
const nodes = this.nodes;
|
|
|
|
const snippetValues = [];
|
|
|
|
for ( const input of nodes ) {
|
|
|
|
const inputSnippet = input.build( builder );
|
|
|
|
snippetValues.push( inputSnippet );
|
|
|
|
}
|
|
|
|
const snippet = `${ builder.getType( type ) }( ${ snippetValues.join( ', ' ) } )`;
|
|
|
|
return builder.format( snippet, type, output );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
export default JoinNode;
|