mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-26 22:09:26 +01:00
Add JavaScript language to compiler_vm (using Google V8)
This commit is contained in:
parent
4986c786f1
commit
d01cbde65b
24
modules/compiler_vm/languages/javascript.pm
Executable file
24
modules/compiler_vm/languages/javascript.pm
Executable 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;
|
Loading…
Reference in New Issue
Block a user