-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
373 additions
and
356 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,42 @@ | ||
#pragma once | ||
|
||
#include "api/APIHelp.h" | ||
|
||
#include <ScriptX/ScriptX.h> | ||
|
||
//////////////////// LLSE Static //////////////////// | ||
|
||
class LlClass { | ||
public: | ||
static Local<Value> getLanguage(); | ||
static Local<Value> getMajorVersion(); | ||
static Local<Value> getMinorVersion(); | ||
static Local<Value> getRevisionVersion(); | ||
static Local<Value> getScriptEngineVersion(); | ||
static Local<Value> getVersionStatus(); | ||
static Local<Value> isRelease(); | ||
static Local<Value> isBeta(); | ||
static Local<Value> isDev(); | ||
static Local<Value> isWine(); | ||
static Local<Value> isDebugMode(); | ||
static Local<Value> getLanguage(); | ||
static Local<Value> getMajorVersion(); | ||
static Local<Value> getMinorVersion(); | ||
static Local<Value> getRevisionVersion(); | ||
static Local<Value> getScriptEngineVersion(); | ||
static Local<Value> getVersionStatus(); | ||
static Local<Value> isRelease(); | ||
static Local<Value> isBeta(); | ||
static Local<Value> isDev(); | ||
static Local<Value> isWine(); | ||
static Local<Value> isDebugMode(); | ||
|
||
static Local<Value> registerPlugin(const Arguments& args); | ||
static Local<Value> versionString(const Arguments& args); | ||
static Local<Value> requireVersion(const Arguments& args); | ||
static Local<Value> getAllPluginInfo(const Arguments& args); | ||
static Local<Value> listPlugins(const Arguments& args); | ||
static Local<Value> exportFunc(const Arguments& args); | ||
static Local<Value> importFunc(const Arguments& args); | ||
static Local<Value> hasFuncExported(const Arguments& args); | ||
static Local<Value> require(const Arguments& args); | ||
static Local<Value> eval(const Arguments& args); | ||
static Local<Value> getPluginInfo(const Arguments& args); | ||
static Local<Value> registerPlugin(const Arguments &args); | ||
static Local<Value> versionString(const Arguments &args); | ||
static Local<Value> requireVersion(const Arguments &args); | ||
static Local<Value> getAllPluginInfo(const Arguments &args); | ||
static Local<Value> listPlugins(const Arguments &args); | ||
static Local<Value> exportFunc(const Arguments &args); | ||
static Local<Value> importFunc(const Arguments &args); | ||
static Local<Value> hasFuncExported(const Arguments &args); | ||
static Local<Value> require(const Arguments &args); | ||
static Local<Value> eval(const Arguments &args); | ||
static Local<Value> getPluginInfo(const Arguments &args); | ||
|
||
// For Compatibility | ||
static Local<Value> version(const Arguments& args); | ||
static Local<Value> getVersionStatusFunction(const Arguments& args); | ||
static Local<Value> isDebugModeFunction(const Arguments& args); | ||
static Local<Value> getScriptEngineVersionFunction(const Arguments& args); | ||
// For Compatibility | ||
static Local<Value> version(const Arguments &args); | ||
static Local<Value> getVersionStatusFunction(const Arguments &args); | ||
static Local<Value> isDebugModeFunction(const Arguments &args); | ||
static Local<Value> getScriptEngineVersionFunction(const Arguments &args); | ||
}; | ||
extern ClassDefine<void> LlClassBuilder; | ||
extern ClassDefine<void> VersionClassBuilder; | ||
extern ClassDefine<void> VersionClassBuilder; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.