Merged PR 137913: Initial check-in for vanilla spec

- Initial check-in for vanilla spec
This commit is contained in:
Daiyi Peng 2016-12-07 21:24:22 +00:00 коммит произвёл Daiyi Peng
Коммит 2c608c647a
11 изменённых файлов: 28 добавлений и 0 удалений

6
api/inc/napa.h Normal file
Просмотреть файл

@ -0,0 +1,6 @@
// Facade header file for embedders.
// May include internal headers under napa/*.h
namespace napa {
}

5
api/inc/napa_app.h Normal file
Просмотреть файл

@ -0,0 +1,5 @@
// Facade for embedders for Napa AppEngine.
// May include header files from napa subfolder.
namespace napa {
}

6
api/inc/napa_module.h Normal file
Просмотреть файл

@ -0,0 +1,6 @@
// Facade header file for napa module developers.
// May include internal headers under napa/*.h
namespace napa {
}

1
api/node/napa_app.ts Normal file
Просмотреть файл

@ -0,0 +1 @@
// Napa/Node.JS module for Napa AppEngine.

1
api/node/napa_runtime.ts Normal file
Просмотреть файл

@ -0,0 +1 @@
// Node.JS module for napa runtime.

1
examples/apps/README.txt Normal file
Просмотреть файл

@ -0,0 +1 @@
Figure out a list of example applications.

Просмотреть файл

@ -0,0 +1 @@
// Example code for Napa AppEngine embedder.

Просмотреть файл

@ -0,0 +1 @@
// Example code for CPP embedder.

Просмотреть файл

@ -0,0 +1 @@
// Example for JS embedder.

Просмотреть файл

@ -0,0 +1,4 @@
We need examples for:
1) A CPP module with only static method, and properties.
2) A CPP module that create a class, with member methods and properties.
3) A CPP module that access Napa specfic module APIs (like allocator, etc.)

Просмотреть файл

@ -0,0 +1 @@
An example of JS module. mostly as today.