3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-01 17:16:39 +02:00

Add JavaScript language to compiler_vm (using Google V8)

This commit is contained in:
Pragmatic Software 2015-04-05 02:31:45 -07:00
parent 4986c786f1
commit d01cbde65b

View File

@ -0,0 +1,24 @@
#!/usr/bin/env perl
use warnings;
use strict;
package javascript;
use parent '_default';
sub initialize {
my ($self, %conf) = @_;
$self->{sourcefile} = 'prog.js';
$self->{execfile} = 'prog.js';
$self->{default_options} = '';
$self->{cmdline} = 'd8 $options $sourcefile';
$self->{cmdline_opening_comment} = "/************* CMDLINE *************\n";
$self->{cmdline_closing_comment} = "************** CMDLINE *************/\n";
$self->{output_opening_comment} = "/************* OUTPUT *************\n";
$self->{output_closing_comment} = "************** OUTPUT *************/\n";
}
1;