From 730b782de112ef9f26814d1eef0782432523d307 Mon Sep 17 00:00:00 2001 From: Drak Date: Tue, 24 Jul 2012 14:03:32 +0200 Subject: [PATCH] Fixed formatting of markdown. --- README.md | 72 ++++++++++++++++++++++++++++--------------------------- 1 file changed, 37 insertions(+), 35 deletions(-) diff --git a/README.md b/README.md index 54b6d5d..943d756 100644 --- a/README.md +++ b/README.md @@ -26,47 +26,49 @@ Minimum requirements API === -class V8Js -{ - /* Constants */ + class V8Js + { + /* Constants */ - const string V8_VERSION; - const int FLAG_NONE; - const int FLAG_FORCE_ARRAY; + const string V8_VERSION; + const int FLAG_NONE; + const int FLAG_FORCE_ARRAY; + + /* Methods */ - /* Methods */ + // Initializes and starts V8 engine and Returns new V8Js object with it's own V8 context. + public __construct ( [string object_name = "PHP" [, array variables = NULL [, array extensions = NULL [, bool report_uncaught_exceptions = TRUE]]] ) - // Initializes and starts V8 engine and Returns new V8Js object with it's own V8 context. - public __construct ( [string object_name = "PHP" [, array variables = NULL [, array extensions = NULL [, bool report_uncaught_exceptions = TRUE]]] ) + // Compiles and executes script in object's context with optional identifier string. + public mixed V8Js::executeString( string script [, string identifier [, int flags = V8Js::FLAG_NONE]]) - // Compiles and executes script in object's context with optional identifier string. - public mixed V8Js::executeString( string script [, string identifier [, int flags = V8Js::FLAG_NONE]]) + // Returns uncaught pending exception or null if there is no pending exception. + public V8JsException V8Js::getPendingException( void ) - // Returns uncaught pending exception or null if there is no pending exception. - public V8JsException V8Js::getPendingException( void ) + /** Static methods **/ - /** Static methods **/ + // Registers persistent context independent global Javascript extension. + // NOTE! These extensions exist until PHP is shutdown and they need to be registered before V8 is initialized. + // For best performance V8 is initialized only once per process thus this call has to be done before any V8Js objects are created! + public static bool V8Js::registerExtension(string ext_name, string script [, array deps [, bool auto_enable = FALSE]]) - // Registers persistent context independent global Javascript extension. - // NOTE! These extensions exist until PHP is shutdown and they need to be registered before V8 is initialized. - // For best performance V8 is initialized only once per process thus this call has to be done before any V8Js objects are created! - public static bool V8Js::registerExtension(string ext_name, string script [, array deps [, bool auto_enable = FALSE]]) + // Returns extensions successfully registered with V8Js::registerExtension(). + public static array V8Js::getExtensions( void ) + } - // Returns extensions successfully registered with V8Js::registerExtension(). - public static array V8Js::getExtensions( void ) -} + final class V8JsException extends Exception + { + /* Properties */ + protected string JsFileName = NULL; + protected int JsLineNumber = NULL; + protected string JsSourceLine = NULL; + protected string JsTrace = NULL; + + /* Methods */ + final public string getJsFileName( void ) + final public int getJsLineNumber( void ) + final public string getJsSourceLine( void ) + final public string getJsTrace( void ) + } + -final class V8JsException extends Exception -{ - /* Properties */ - protected string JsFileName = NULL; - protected int JsLineNumber = NULL; - protected string JsSourceLine = NULL; - protected string JsTrace = NULL; - - /* Methods */ - final public string getJsFileName( void ) - final public int getJsLineNumber( void ) - final public string getJsSourceLine( void ) - final public string getJsTrace( void ) -}