2018-06-09 18:32:04 -04:00
|
|
|
// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
|
|
|
|
// All rights reserved. MIT License.
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2018-06-09 22:55:31 -04:00
|
|
|
#include "include/deno.h"
|
2018-06-09 18:32:04 -04:00
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
2018-06-09 20:24:34 -04:00
|
|
|
deno::v8_init();
|
2018-06-09 18:32:04 -04:00
|
|
|
|
2018-06-09 23:34:03 -04:00
|
|
|
deno::Deno* d = deno::from_snapshot(NULL, NULL);
|
2018-06-09 20:24:34 -04:00
|
|
|
int r = deno::deno_load(d, "main2.js", "foo();");
|
2018-06-09 18:32:04 -04:00
|
|
|
if (r != 0) {
|
2018-06-09 20:24:34 -04:00
|
|
|
printf("Error! %s\n", deno::deno_last_exception(d));
|
2018-06-09 18:32:04 -04:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|