diff --git a/.vs/youtube-downloader/xs/UserPrefs.xml b/.vs/youtube-downloader/xs/UserPrefs.xml index 122df46..b7efc0f 100644 --- a/.vs/youtube-downloader/xs/UserPrefs.xml +++ b/.vs/youtube-downloader/xs/UserPrefs.xml @@ -1,33 +1,32 @@  - + - + - - + + - - + + + - + - - - + diff --git a/Program.cs b/Program.cs index af9b42b..449ec85 100644 --- a/Program.cs +++ b/Program.cs @@ -14,6 +14,10 @@ using Newtonsoft.Json; using System.Net; using System.Threading.Tasks; using TYTD.Server.Functions; +using YoutubeExplode.Extensions; +using YoutubeExplode.Videos; +using YoutubeExplode; +using YoutubeExplode.Videos.Streams; namespace TYTD { @@ -23,7 +27,7 @@ namespace TYTD static string webSitePath; static void Main(string[] arg) { - + Downloader.GetManifest = GetManifest; Thread t = new Thread(new ThreadStart(() => { Downloader.DL.DownloadThread().GetAwaiter().GetResult(); })); @@ -117,6 +121,11 @@ namespace TYTD } } + private static async Task GetManifest(YoutubeClient arg1, VideoId arg2) + { + return await arg1.Videos.Streams.GetManifestAndFixStreamUrlsAsync(arg2); + } + #region Generic private static void AddItems(HttpListenerRequest request, HttpListenerResponse response, Dictionary arguments) { diff --git a/TYTD.Api/MyClass.cs b/TYTD.Api/MyClass.cs index 4df5748..b1a78b2 100644 --- a/TYTD.Api/MyClass.cs +++ b/TYTD.Api/MyClass.cs @@ -57,6 +57,13 @@ namespace TYTD DownloadStart.Invoke(sender, e); } } + internal void SendDLInfoStart(object sender, DownloadInfoStartEventArgs e) + { + if (DownloadInfoStart != null) + { + DownloadInfoStart.Invoke(sender, e); + } + } internal void SendDLComplete(object sender, DownloadCompleteEventArgs e) { if (DownloadComplete != null) @@ -64,6 +71,7 @@ namespace TYTD DownloadComplete.Invoke(sender, e); } } + public event EventHandler DownloadInfoStart; public event EventHandler DownloadStart; public event EventHandler DownloadComplete; @@ -81,6 +89,12 @@ namespace TYTD public bool RegularFile { get; set; } public SavedVideo Video { get; set; } + } + public class DownloadInfoStartEventArgs : EventArgs + { + + public SavedVideo Video { get; set; } + } public class DownloadStartEventArgs : EventArgs { @@ -108,6 +122,14 @@ namespace TYTD api.SendDLComplete(sender, evt); } } + internal static void DownloadInfoStart(object sender, DownloadInfoStartEventArgs evt) + { + foreach (var api in apis) + { + api.SendDLInfoStart(sender, evt); + } + } + public static void Dispose() { foreach(var api in apis) diff --git a/TYTD.Api/Server/Functions/Downloader.cs b/TYTD.Api/Server/Functions/Downloader.cs index e7e1368..84b3075 100644 --- a/TYTD.Api/Server/Functions/Downloader.cs +++ b/TYTD.Api/Server/Functions/Downloader.cs @@ -16,6 +16,7 @@ using YoutubeExplode.Playlists; using Dasync.Collections; + namespace TYTD.Server.Functions { public class Downloader @@ -25,6 +26,7 @@ namespace TYTD.Server.Functions // TessesYoutubeDownloader.Server.Functions.Downloader.DL.DownloadThread().GetAwaiter().GetResult(); } + public static bool DownloadIt = true; public static bool RedownloadIt = false; public List infoQueue = new List(); @@ -389,6 +391,7 @@ namespace TYTD.Server.Functions nameDest= Path.Combine(Path.GetDirectoryName(nameSrc), $"{Path.GetFileNameWithoutExtension(nameSrc)} ({i}){Path.GetExtension(nameSrc)}"); return File.Exists(nameDest); } + public static Func> GetManifest; public async Task DownloadThread() { do @@ -505,15 +508,18 @@ namespace TYTD.Server.Functions if (Continue(mypathComplete)) { - var s3 = await ytc.Videos.Streams.GetManifestAsync(v.Video.Id); + + var s3 = await GetManifest(ytc,v.Video.Id); var best2 = s3.GetAudioOnlyStreams().GetWithHighestBitrate(); var best = s3.GetVideoOnlyStreams().GetWithHighestVideoQuality(); + P.Length = best.Size.Bytes + best2.Size.Bytes; ProgressTwo p = new ProgressTwo(best.Size.Bytes, best2.Size.Bytes, DownloadP); + using (var destStrm = System.IO.File.Open(mypath, FileMode.OpenOrCreate, FileAccess.ReadWrite)) { long pos = 0; @@ -610,7 +616,7 @@ namespace TYTD.Server.Functions if (Continue(mypath2Complete)) { - var s = await ytc.Videos.Streams.GetManifestAsync(v.Video.Id); + var s = await GetManifest(ytc,v.Video.Id); var best = s.GetMuxedStreams().GetWithHighestVideoQuality(); P.Length = best.Size.Bytes; long pos = 0; @@ -661,7 +667,7 @@ namespace TYTD.Server.Functions string mypath3Complete = GetPath(true, "Audio", v.Video.Id + ".mp4"); if (Continue(mypath3Complete)) { - var s2 = await ytc.Videos.Streams.GetManifestAsync(v.Video.Id); + var s2 = await GetManifest(ytc,v.Video.Id); var best2 = s2.GetAudioOnlyStreams().GetWithHighestBitrate(); P.Length = best2.Size.Bytes; long pos = 0; diff --git a/TYTD.Api/Server/Models/InfomationQueueItem.cs b/TYTD.Api/Server/Models/InfomationQueueItem.cs index 8480329..5542e01 100644 --- a/TYTD.Api/Server/Models/InfomationQueueItem.cs +++ b/TYTD.Api/Server/Models/InfomationQueueItem.cs @@ -121,7 +121,9 @@ namespace TYTD.Server.Models sv = SavedVideo.CreateFrom(res, vinfo, Functions.Downloader.DL._DownloadThumbnail); - + DownloadInfoStartEventArgs info = new DownloadInfoStartEventArgs(); + info.Video = sv.Video; + ApiLoader.DownloadInfoStart(this, info); } if (!exist) diff --git a/TYTD.Api/Server/Models/SavedVideo.cs b/TYTD.Api/Server/Models/SavedVideo.cs index 5a902f2..03dba2b 100644 --- a/TYTD.Api/Server/Models/SavedVideo.cs +++ b/TYTD.Api/Server/Models/SavedVideo.cs @@ -5,6 +5,7 @@ using System.Text; using System.Threading.Tasks; using TYTD.Server.Functions; using YoutubeExplode.Videos; + namespace TYTD.Server.Models { diff --git a/TYTD.Api/TYTD.Api.csproj b/TYTD.Api/TYTD.Api.csproj index 89d12b1..5fad4e3 100644 --- a/TYTD.Api/TYTD.Api.csproj +++ b/TYTD.Api/TYTD.Api.csproj @@ -104,6 +104,7 @@ ..\packages\Simple-HTTP.1.0.6\lib\net47\SimpleHTTP.dll + diff --git a/TYTD.Api/bin/Release/MimeTypesMap.dll b/TYTD.Api/bin/Release/MimeTypesMap.dll new file mode 100644 index 0000000..c7d1528 Binary files /dev/null and b/TYTD.Api/bin/Release/MimeTypesMap.dll differ diff --git a/TYTD.Api/bin/Release/SimpleHTTP.dll b/TYTD.Api/bin/Release/SimpleHTTP.dll new file mode 100644 index 0000000..6fb3f06 Binary files /dev/null and b/TYTD.Api/bin/Release/SimpleHTTP.dll differ diff --git a/TYTD.Api/bin/Release/SimpleHTTP.xml b/TYTD.Api/bin/Release/SimpleHTTP.xml new file mode 100644 index 0000000..1f2fe90 --- /dev/null +++ b/TYTD.Api/bin/Release/SimpleHTTP.xml @@ -0,0 +1,415 @@ + + + + SimpleHTTP + + + + + Class containing extensions. + + + + + Parses body of the request including form and multi-part form data. + + HTTP request. + Key-value pairs populated by the form data by this function. + Name-file pair collection. + + + + Parses body of the request including form and multi-part form data. + + HTTP request. + Key-value pairs populated by the form data by this function. + + Function called if a file is about to be parsed. The stream is attached to a corresponding . + By default, is used, but for large files, it is recommended to open directly. + + Name-file pair collection. + + + + Delegate executed when a file is about to be read from a body stream. + + Field name. + name of the file. + Content type. + Stream to be populated. + + + + HTTP file data container. + + + + + Creates new HTTP file data container. + + File name. + Data. + Content type. + + + + Gets the name of the file. + + + + + Gets the data. + If a stream is created it will be closed when this HttpFile object is disposed. + + + + + Content type. + + + + + Saves the data into a file. + Directory path will be auto created if does not exists. + + File path with name. + True to overwrite the existing file, false otherwise. + True if the file is saved/overwritten, false otherwise. + + + + Disposes the current instance. + + + + + Disposes the current instance. + + + + + Class containing HTTP response extensions. + + + + + Sets response headers to enable CORS. + + HTTP response. + Modified HTTP response. + + + + Sets the content-type for the response. + + HTTP response. + HTTP content-type. + Modified HTTP response. + + + + Sets the specified header for the response. + + HTTP response. + Header name. + Header value. + Modified HTTP response. + + + + Sets the status code for the response. + + HTTP response. + HTTP status code. + Modified HTTP response. + + + + Sets the cookie for the response. + + HTTP response. + Cookie name. + Cookie value. + Modified HTTP response. + + + + Sets the cookie for the response. + + HTTP response. + Cookie name. + Cookie value. + Cookie expiration date (UTC). + Modified HTTP response. + + + + Sets the cookie for the response. + + HTTP response. + Cookie. + Modified HTTP response. + + + + Writes the specified data to the response. + Response is closed and can not be longer modified. + + HTTP response. + Text data to write. + Mime type. + + + + Builds a redirect response. + Response is closed and can not be longer modified. + + HTTP response. + A new location (URL). + + + + Writes the specified file content to the response. + Response is closed and can not be longer modified. + Built-in support for 'byte-range' response, 'ETag' and 'Last-Modified'. + + HTTP response. + HTTP request used to determine 'Range' header + File path with name. + + + + Writes the specified data to the response. + Response is closed and can not be longer modified. + + HTTP response. + HTTP request used to determine 'Range' header + Data to write. + Mime type. + + + + Writes the specified data to the response. + Response is closed and can not be longer modified. + + HTTP response. + HTTP request used to determine 'Range' header + + Data to write. + Stream must support seek operation due to 'byte-range' functionality. + + Mime type. + + + + Class containing extensions for . + + + + + Matches all the expressions inside '{ }' defined in for the and populates the . + Example: query: "Hello world", pattern: "{first} world" => args["first"] is "Hello". + + Query string. + Pattern string defining the expressions to match inside '{ }'. + Key-value pair collection populated by keys and matches in if found. + True is all defined keys in are matched, false otherwise. + + + + Delegate which runs before all route-methods and returns if the processing should finish (true) or continue (false). + + HTTP request. + HTTP response. + True if the request is handled, false otherwise. + + + + Delegate which runs before any route-action is invoked to determine which route should be executed. + + HTTP request. + + Empty collection of key-value pairs populated by this function. + If is run it may contain some data. + + True if the route action should be executed, false otherwise. + + + + Delegate which runs when a route is matched. + + HTTP request. + HTTP response. + Collection of key-value pairs populated by the . + Action task. + + + + Delegate which runs when a route is matched. + + HTTP request. + HTTP response. + Collection of key-value pairs populated by the . + + + + Delegate which runs if an error occurs. + + HTTP request. + HTTP response. + Thrown exception. + + + + Represents error that occur when a route is not found. + + + + + Creates a new instance of the route not found exception. + + + + + + Class defining all the required actions for route-processing and error handling. + /// + + + + Action executed before all route-methods. + It may be null. + + + + + Action executed if an error occurs. + By default it outputs exception message as text with an existing status code. In case of 200-299, 'BadRequest' is used. + + + + + Gets or sets the route methods. + + + + + Entry function executed on the incoming HTTP request. + + HTTP request. + HTTP response. + Request processing task. + + + + Adds the specified action to the route collection. + The order of actions defines the priority. + + + String pattern optionally containing named arguments in {}. + + Example: "/page-{pageNumber}/". 'pageNumber' will be parsed and added to 'arguments' key-value pair collection. + The last argument is parsed as greedy one. + + + Action executed if the specified pattern matches the URL path. + HTTP method (GET, POST, DELETE, HEAD). + + + + Adds the specified action to the route collection. + The order of actions defines the priority. + + + String pattern optionally containing named arguments in {}. + + Example: "/page-{pageNumber}/". 'pageNumber' will be parsed and added to 'arguments' key-value pair collection. + The last argument is parsed as greedy one. + + + Action executed if the specified pattern matches the URL path. + HTTP method (GET, POST, DELETE, HEAD). + + + + Adds the specified action to the route collection. + The order of actions defines the priority. + + Function defining whether the specified action should be executed or not. + Action executed if the specified pattern matches the URL path. + + + + Adds the specified action to the route collection. + The order of actions defines the priority. + + Function defining whether the specified action should be executed or not. + Action executed if the specified pattern matches the URL path. + + + + HTTP server listener class. + + + + + Creates and starts a new instance of the http(s) server. + + The http/https URI listening port. + Cancellation token. + Action executed on HTTP request. + True to add 'https://' prefix insteaad of 'http://'. + Maximum HTTP connection count, after which the incoming requests will wait (sockets are not included). + Server listening task. + + + + Creates and starts a new instance of the http(s) / websocket server. + + The http/https URI listening prefix. + Cancellation token. + Action executed on HTTP request. + Maximum HTTP connection count, after which the incoming requests will wait (sockets are not included). + Server listening task. + + + + Class defining methods for string or file pattern replacements. + + + + + Replaces all occurrences defined inside each {key} expression with values. Keys and values are specified in the replacements. + + File path with name. + Key-value pair collection for replacements. + Processed file content. + + + + Replaces all occurrences defined inside each {key} expression with values. Keys and values are specified in the replacements. + + Template string. + Key-value pair collection for replacements. + Processed template. + + + + Replaces all occurrences defined inside each {key} expression with values. Keys and values are defined as object property names and values. + + Object type. + File path with name. + Object to use for replacements. + Processed file content. + + + + Replaces all occurrences defined inside each {key} expression with values. Keys and values are defined as object property names and values. + + Object type. + Template string. + Object to use for replacements. + Processed file content. + + + diff --git a/TYTD.Api/bin/Release/System.Text.Encoding.CodePages.xml b/TYTD.Api/bin/Release/System.Text.Encoding.CodePages.xml new file mode 100755 index 0000000..2922228 --- /dev/null +++ b/TYTD.Api/bin/Release/System.Text.Encoding.CodePages.xml @@ -0,0 +1,29 @@ + + + + System.Text.Encoding.CodePages + + + + Provides access to an encoding provider for code pages that otherwise are available only in the desktop .NET Framework. + + + Returns the encoding associated with the specified code page identifier. + The code page identifier of the preferred encoding which the encoding provider may support. + The encoding associated with the specified code page identifier, or if the provider does not support the requested codepage encoding. + + + Returns the encoding associated with the specified code page name. + The code page name of the preferred encoding which the encoding provider may support. + The encoding associated with the specified code page, or if the provider does not support the requested encoding. + + + Returns an array that contains all the encodings that are supported by the . + An array that contains all the supported encodings. + + + Gets an encoding provider for code pages supported in the desktop .NET Framework but not in the current .NET Framework platform. + An encoding provider that allows access to encodings not supported on the current .NET Framework platform. + + + \ No newline at end of file diff --git a/TYTD.Api/bin/Release/TYTD.Api.dll b/TYTD.Api/bin/Release/TYTD.Api.dll index d60ddbe..e15892e 100644 Binary files a/TYTD.Api/bin/Release/TYTD.Api.dll and b/TYTD.Api/bin/Release/TYTD.Api.dll differ diff --git a/TYTD.Api/obj/Release/TYTD.Api.csproj.CoreCompileInputs.cache b/TYTD.Api/obj/Release/TYTD.Api.csproj.CoreCompileInputs.cache index 9173b6d..0fe2453 100644 --- a/TYTD.Api/obj/Release/TYTD.Api.csproj.CoreCompileInputs.cache +++ b/TYTD.Api/obj/Release/TYTD.Api.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -43d1539c7b8a6555a9e7a98302a38acdd2e39a06 +bd5555531ad345fded2f6956d4df232b6cc12a0e diff --git a/TYTD.Api/obj/Release/TYTD.Api.csprojAssemblyReference.cache b/TYTD.Api/obj/Release/TYTD.Api.csprojAssemblyReference.cache index a373065..94b757b 100644 Binary files a/TYTD.Api/obj/Release/TYTD.Api.csprojAssemblyReference.cache and b/TYTD.Api/obj/Release/TYTD.Api.csprojAssemblyReference.cache differ diff --git a/TYTD.Api/obj/Release/TYTD.Api.dll b/TYTD.Api/obj/Release/TYTD.Api.dll index d60ddbe..e15892e 100644 Binary files a/TYTD.Api/obj/Release/TYTD.Api.dll and b/TYTD.Api/obj/Release/TYTD.Api.dll differ diff --git a/bin/Release/ExposedObject.dll b/bin/Release/ExposedObject.dll new file mode 100755 index 0000000..afd4122 Binary files /dev/null and b/bin/Release/ExposedObject.dll differ diff --git a/bin/Release/ExposedObject.pdb b/bin/Release/ExposedObject.pdb new file mode 100755 index 0000000..e8cf7d2 Binary files /dev/null and b/bin/Release/ExposedObject.pdb differ diff --git a/bin/Release/Flurl.dll b/bin/Release/Flurl.dll new file mode 100755 index 0000000..42382c5 Binary files /dev/null and b/bin/Release/Flurl.dll differ diff --git a/bin/Release/Flurl.pdb b/bin/Release/Flurl.pdb new file mode 100755 index 0000000..5d89fb3 Binary files /dev/null and b/bin/Release/Flurl.pdb differ diff --git a/bin/Release/Flurl.xml b/bin/Release/Flurl.xml new file mode 100755 index 0000000..646f70f --- /dev/null +++ b/bin/Release/Flurl.xml @@ -0,0 +1,883 @@ + + + + Flurl + + + + + Fluent URL-building extension methods on String and Uri. + + + + + Creates a new Url object from the string and appends a segment to the URL path, ensuring there is one and only one '/' character as a separator. + + This URL. + The segment to append + If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters). + A new Flurl.Url object. + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator. + + This URL. + The segments to append + A new Flurl.Url object. + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator. + + This URL. + The segments to append + A new Flurl.Url object. + + + + Removes the last path segment from the URL. + + This URL. + A new Flurl.Url object. + + + + Removes the entire path component of the URL. + + This URL. + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists. + + This URL. + Name of query parameter + Value of query parameter + Indicates how to handle null values. Defaults to Remove (any existing) + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists. + + This URL. + Name of query parameter + Value of query parameter + Set to true to indicate the value is already URL-encoded. Defaults to false. + Indicates how to handle null values. Defaults to Remove (any existing). + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter without a value to the query, removing any existing value. + + This URL. + Name of query parameter + A new Flurl.Url object. + + + + Creates a new Url object from the string, parses values object into name/value pairs, and adds them to the query, overwriting any that already exist. + + This URL. + Typically an anonymous object, ie: new { x = 1, y = 2 } + Indicates how to handle null values. Defaults to Remove (any existing) + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds multiple parameters without values to the query. + + This URL. + Names of query parameters. + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds multiple parameters without values to the query. + + This URL. + Names of query parameters + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes a name/value pair from the query by name. + + This URL. + Query string parameter name to remove + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes multiple name/value pairs from the query by name. + + This URL. + Query string parameter names to remove + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes multiple name/value pairs from the query by name. + + This URL. + Query string parameter names to remove + A new Flurl.Url object. + + + + Removes the entire query component of the URL. + + This URL. + A new Flurl.Url object. + + + + Set the URL fragment fluently. + + This URL. + The part of the URL after # + A new Flurl.Url object. + + + + Removes the URL fragment including the #. + + This URL. + A new Flurl.Url object. + + + + Trims the URL to its root, including the scheme, any user info, host, and port (if specified). + + This URL. + A new Flurl.Url object. + + + + Creates a new Url object from the string and appends a segment to the URL path, ensuring there is one and only one '/' character as a separator. + + This System.Uri. + The segment to append + If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters). + A new Flurl.Url object. + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator. + + This System.Uri. + The segments to append + A new Flurl.Url object. + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator. + + This System.Uri. + The segments to append + A new Flurl.Url object. + + + + Removes the last path segment from the URL. + + This System.Uri. + A new Flurl.Url object. + + + + Removes the entire path component of the URL. + + This System.Uri. + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists. + + This System.Uri. + Name of query parameter + Value of query parameter + Indicates how to handle null values. Defaults to Remove (any existing) + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists. + + This System.Uri. + Name of query parameter + Value of query parameter + Set to true to indicate the value is already URL-encoded. Defaults to false. + Indicates how to handle null values. Defaults to Remove (any existing). + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter without a value to the query, removing any existing value. + + This System.Uri. + Name of query parameter + A new Flurl.Url object. + + + + Creates a new Url object from the string, parses values object into name/value pairs, and adds them to the query, overwriting any that already exist. + + This System.Uri. + Typically an anonymous object, ie: new { x = 1, y = 2 } + Indicates how to handle null values. Defaults to Remove (any existing) + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds multiple parameters without values to the query. + + This System.Uri. + Names of query parameters. + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds multiple parameters without values to the query. + + This System.Uri. + Names of query parameters + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes a name/value pair from the query by name. + + This System.Uri. + Query string parameter name to remove + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes multiple name/value pairs from the query by name. + + This System.Uri. + Query string parameter names to remove + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes multiple name/value pairs from the query by name. + + This System.Uri. + Query string parameter names to remove + A new Flurl.Url object. + + + + Removes the entire query component of the URL. + + This System.Uri. + A new Flurl.Url object. + + + + Set the URL fragment fluently. + + This System.Uri. + The part of the URL after # + A new Flurl.Url object. + + + + Removes the URL fragment including the #. + + This System.Uri. + A new Flurl.Url object. + + + + Trims the URL to its root, including the scheme, any user info, host, and port (if specified). + + This System.Uri. + A new Flurl.Url object. + + + + Describes how to handle null values in query parameters. + + + + + Set as name without value in query string. + + + + + Don't add to query string, remove any existing value. + + + + + Don't add to query string, but leave any existing value unchanged. + + + + + Represents a URL query as a collection of name/value pairs. Insertion order is preserved. + + + + + Returns a new instance of QueryParamCollection + + Optional query string to parse. + + + + Returns serialized, encoded query string. Insertion order is preserved. + + + + + + Returns serialized, encoded query string. Insertion order is preserved. + + + + + + Appends a query parameter. If value is a collection type (array, IEnumerable, etc.), multiple parameters are added, i.e. x=1&x=2. + To overwrite existing parameters of the same name, use AddOrReplace instead. + + Name of the parameter. + Value of the parameter. If it's a collection, multiple parameters of the same name are added. + If true, assume value(s) already URL-encoded. + Describes how to handle null values. + + + + Replaces existing query parameter(s) or appends to the end. If value is a collection type (array, IEnumerable, etc.), + multiple parameters are added, i.e. x=1&x=2. If any of the same name already exist, they are overwritten one by one + (preserving order) and any remaining are appended to the end. If fewer values are specified than already exist, + remaining existing values are removed. + + Name of the parameter. + Value of the parameter. If it's a collection, multiple parameters of the same name are added/replaced. + If true, assume value(s) already URL-encoded. + Describes how to handle null values. + + + + Removes all query parameters of the given name. + + + + + Clears all query parameters from this collection. + + + + > + + + > + + + > + + + > + + + > + + + > + + + > + + + > + + + + Represents a query parameter value with the ability to track whether it was already encoded when created. + + + + + A mutable object for fluently building and parsing URLs. + + + + + The scheme of the URL, i.e. "http". Does not include ":" delimiter. Empty string if the URL is relative. + + + + + i.e. "user:pass" in "https://user:pass@www.site.com". Empty string if not present. + + + + + i.e. "www.site.com" in "https://www.site.com:8080/path". Does not include user info or port. + + + + + Port number of the URL. Null if not explicitly specified. + + + + + i.e. "www.site.com:8080" in "https://www.site.com:8080/path". Includes both user info and port, if included. + + + + + i.e. "https://www.site.com:8080" in "https://www.site.com:8080/path" (everything before the path). + + + + + i.e. "/path" in "https://www.site.com/path". Empty string if not present. Leading and trailing "/" retained exactly as specified by user. + + + + + The "/"-delimited segments of the path, not including leading or trailing "/" characters. + + + + + i.e. "x=1&y=2" in "https://www.site.com/path?x=1&y=2". Does not include "?". + + + + + Query parsed to name/value pairs. + + + + + i.e. "frag" in "https://www.site.com/path?x=y#frag". Does not include "#". + + + + + True if URL does not start with a non-empty scheme. i.e. true for "https://www.site.com", false for "//www.site.com". + + + + + True if Url is absolute and scheme is https or wss. + + + + + Constructs a Url object from a string. + + The URL to use as a starting point. + + + + Constructs a Url object from a System.Uri. + + The System.Uri (required) + is . + + + + Parses a URL string into a Flurl.Url object. + + + + + Parses a URL query to a QueryParamCollection. + + The URL query to parse. + + + + Splits the given path into segments, encoding illegal characters, "?", and "#". + + The path to split. + + + + + Appends a segment to the URL path, ensuring there is one and only one '/' character as a separator. + + The segment to append + If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters). + the Url object with the segment appended + is . + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a seperator. + + The segments to append + the Url object with the segments appended + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a seperator. + + The segments to append + the Url object with the segments appended + + + + Removes the last path segment from the URL. + + The Url object. + + + + Removes the entire path component of the URL, including the leading slash. + + The Url object. + + + + Adds a parameter to the query, overwriting the value if name exists. + + Name of query parameter + Value of query parameter + Indicates how to handle null values. Defaults to Remove (any existing) + The Url object with the query parameter added + + + + Adds a parameter to the query, overwriting the value if name exists. + + Name of query parameter + Value of query parameter + Set to true to indicate the value is already URL-encoded + Indicates how to handle null values. Defaults to Remove (any existing) + The Url object with the query parameter added + is . + + + + Adds a parameter without a value to the query, removing any existing value. + + Name of query parameter + The Url object with the query parameter added + + + + Parses values (usually an anonymous object or dictionary) into name/value pairs and adds them to the query, overwriting any that already exist. + + Typically an anonymous object, ie: new { x = 1, y = 2 } + Indicates how to handle null values. Defaults to Remove (any existing) + The Url object with the query parameters added + + + + Adds multiple parameters without values to the query. + + Names of query parameters. + The Url object with the query parameter added + + + + Adds multiple parameters without values to the query. + + Names of query parameters + The Url object with the query parameter added. + + + + Removes a name/value pair from the query by name. + + Query string parameter name to remove + The Url object with the query parameter removed + + + + Removes multiple name/value pairs from the query by name. + + Query string parameter names to remove + The Url object. + + + + Removes multiple name/value pairs from the query by name. + + Query string parameter names to remove + The Url object with the query parameters removed + + + + Removes the entire query component of the URL. + + The Url object. + + + + Set the URL fragment fluently. + + The part of the URL after # + The Url object with the new fragment set + + + + Removes the URL fragment including the #. + + The Url object with the fragment removed + + + + Resets the URL to its root, including the scheme, any user info, host, and port (if specified). + + The Url object trimmed to its root. + + + + Resets the URL to its original state as set in the constructor. + + + + + Creates a copy of this Url. + + + + + Converts this Url object to its string representation. + + Indicates whether to encode spaces with the "+" character instead of "%20" + + + + + Converts this Url object to its string representation. + + + + + + Converts this Url object to System.Uri + + The System.Uri object + + + + Implicit conversion from Url to String. + + The Url object + The string + + + + Implicit conversion from String to Url. + + The String representation of the URL + The string + + + + Implicit conversion from System.Uri to Flurl.Url. + + The string + + + + True if obj is an instance of Url and its string representation is equal to this instance's string representation. + + The object to compare to this instance. + + + + + Returns the hashcode for this Url. + + + + + Basically a Path.Combine for URLs. Ensures exactly one '/' separates each segment, + and exactly on '&' separates each query parameter. + URL-encodes illegal characters but not reserved characters. + + URL parts to combine. + + + + Decodes a URL-encoded string. + + The URL-encoded string. + If true, any '+' character will be decoded to a space. + + + + + URL-encodes a string, including reserved characters such as '/' and '?'. + + The string to encode. + If true, spaces will be encoded as + signs. Otherwise, they'll be encoded as %20. + The encoded URL. + + + + URL-encodes characters in a string that are neither reserved nor unreserved. Avoids encoding reserved characters such as '/' and '?'. Avoids encoding '%' if it begins a %-hex-hex sequence (i.e. avoids double-encoding). + + The string to encode. + If true, spaces will be encoded as + signs. Otherwise, they'll be encoded as %20. + The encoded URL. + + + + Checks if a string is a well-formed absolute URL. + + The string to check + true if the string is a well-formed absolute URL + + + + CommonExtensions for objects. + + + + + Returns a key-value-pairs representation of the object. + For strings, URL query string format assumed and pairs are parsed from that. + For objects that already implement IEnumerable<KeyValuePair>, the object itself is simply returned. + For all other objects, all publicly readable properties are extracted and returned as pairs. + + The object to parse into key-value pairs + + is . + + + + Returns a string that represents the current object, using CultureInfo.InvariantCulture where possible. + Dates are represented in IS0 8601. + + + + + Splits at the first occurrence of the given separator. + + The string to split. + The separator to split on. + Array of at most 2 strings. (1 if separator is not found.) + + + + Merges the key/value pairs from d2 into d1, without overwriting those already set in d1. + + + + + Strips any single quotes or double quotes from the beginning and end of a string. + + + + + True if the given string is a valid IPv4 address. + + + + + Defines common methods for INameValueList and IReadOnlyNameValueList. + + + + + Returns the first Value of the given Name if one exists, otherwise null or default value. + + + + + Gets the first Value of the given Name, if one exists. + + true if any item of the given name is found, otherwise false. + + + + Gets all Values of the given Name. + + + + + True if any items with the given Name exist. + + + + + True if any item with the given Name and Value exists. + + + + + Defines an ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical. + + + + + Adds a new Name/Value pair. + + + + + Replaces the first occurrence of the given Name with the given Value and removes any others, + or adds a new Name/Value pair if none exist. + + + + + Removes all items of the given Name. + + true if any item of the given name is found, otherwise false. + + + + Defines a read-only ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical. + + + + + An ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical. + Useful for things where a dictionary would work great if not for those pesky edge cases (headers, cookies, etc). + + + + + Instantiates a new empty NameValueList. + + + + + Instantiates a new NameValueList with the Name/Value pairs provided. + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bin/Release/Jurassic.dll b/bin/Release/Jurassic.dll new file mode 100755 index 0000000..e9163a6 Binary files /dev/null and b/bin/Release/Jurassic.dll differ diff --git a/bin/Release/Jurassic.xml b/bin/Release/Jurassic.xml new file mode 100755 index 0000000..fa4038b --- /dev/null +++ b/bin/Release/Jurassic.xml @@ -0,0 +1,18893 @@ + + + + Jurassic + + + + + Represents a generic delegate that all method calls pass through. For internal use only. + + The associated script engine. + The value of the this keyword. + The arguments that were passed to the function. + The result of calling the method. + + + + Selects a method from a list of candidates and performs type conversion from actual + argument type to formal argument type. + + + + + Gets the name of the target methods. + + + + + Gets the full name of the target methods, including the type name. + + + + + Gets the maximum number of arguments of any of the target methods. Used to set the + length property on the function. + + + + + Calls the bound method. + + The associated script engine. + The value of the this keyword. + The arguments to pass to the function. + The result of calling the method. + + + + Creates a delegate that does type conversion and calls the bound method. + + The number of arguments that will be passed to the delegate. + A delegate that does type conversion and calls the method represented by this + object. + This method caches the result so calling CreateDelegate a second time with + the same parameter count will be markedly quicker. + + + + Creates a delegate that does type conversion and calls the bound method. + + The number of arguments that will be passed to the delegate. + A delegate that does type conversion and calls the method represented by this + object. + No caching of the result occurs. + + + + Generates a method that does type conversion and calls the bound method. + + The ILGenerator used to output the body of the method. + The number of arguments that will be passed to the delegate. + A delegate that does type conversion and calls the method represented by this + object. + + + + Returns a textual representation of this object. + + A textual representation of this object. + + + + Represents a single method that a binder can call. + + + + + Creates a new BinderMethod instance. + + The method to encapsulate. + + + + Initializes this instance. + + + + + Gets a reference to the method. + + + + + Implicitly cast an instance of this class to a MethodBase. + + The BinderMethod instance. + A MethodBase instance. + + + + Gets the name of the method. + + + + + Gets the type the method is declared on. + + + + + Gets the type of value pushed onto the stack after calling this method. + + + + + Gets the number of required parameters. + + + + + Gets the number of optional parameters. + + + + + Gets a value that indicates whether the last parameter is a ParamArray. + + + + + Gets the type of element in the ParamArray array. + + + + + Gets an array of method parameters. + + An array of ParameterInfo instances describing the method parameters. + + + + Determines if this method can be called with the given number of arguments. + + The desired number of arguments. + true if this method can be called with the given number of arguments; + false otherwise. + + + + Gets an enumerable list of argument objects, equal in size to + . + + The number of arguments to return. + An enumerable list of argument objects. + + + + Gets an enumerable list of argument objects, equal in size to + while generating code to prepare those arguments for + a method call. + + The number of arguments to return. + The IL generator used to create an array if the method has a + ParamArray parameter. + An enumerable list of argument objects. + + + + Generates code to call the method. + + The IL generator. + + + + Returns a string representing this object. + + A string representing this object. + + + + Represents a single method argument. + + + + + Gets the intended source of the argument. + + + + + Gets the argument index, starting from zero. Only valid if Source is InputParameter. + + + + + Gets the type of the argument. + + + + + Gets a value that indicates whether this argument will be rolled up into an array. + + + + + Gets a value that indicates whether this argument has a default value. + + + + + Gets the default value for this argument. + + + + + Gets an attribute instance of the given type, if it exists on the argument. + + The type of attribute to retrieve. + An attribute instance, or null if the attribute does not exist on the + argument. + + + + This class is intended only for internal use. + + + + + Given a set of methods and a set of arguments, determines whether one of the methods + can be unambiguously selected. Throws an exception if this is not the case. + + An array of handles to the candidate methods. + The associated script engine. + The value of the "this" keyword. + An array of parameter values. + The index of the selected method. + + + + Binds to a method group using pretty standard .NET rules. The main difference from the + JSBinder is that the number of arguments must be correct. Additionally, it is possible to + bind to overloaded methods with the same number of arguments. + + + + + Creates a new ClrBinder instance. + + A method to bind to. + + + + Creates a new ClrBinder instance. + + An enumerable list of methods to bind to. + + + + Creates a new ClrBinder instance. + + An enumerable list of methods to bind to. + + + + Generates a method that does type conversion and calls the bound method. + + The ILGenerator used to output the body of the method. + The number of arguments that will be passed to the delegate. + A delegate that does type conversion and calls the method represented by this + object. + + + + Pops the value on the stack, converts it from an object to the given type, then pushes + the result onto the stack. + + The IL generator. + The type to convert to. + true if the value is intended for use as an + instance pointer; false otherwise. + + + + Pops the value on the stack, converts it to an object, then pushes the result onto the + stack. + + The IL generator. + The type to convert from. + + + + Base class of field getter and setter binders. + + + + + Creates a new FieldGetterBinder instance. + + The field. + + + + Gets the name of the target methods. + + + + + Gets the full name of the target methods, including the type name. + + + + + Retrieves the value of a field. + + + + + Creates a new FieldGetterBinder instance. + + The field. + + + + Generates a method that does type conversion and calls the bound method. + + The ILGenerator used to output the body of the method. + The number of arguments that will be passed to the delegate. + A delegate that does type conversion and calls the method represented by this + object. + + + + Sets the value of a field. + + + + + Creates a new FieldSetterBinder instance. + + The field. + + + + Generates a method that does type conversion and calls the bound method. + + The ILGenerator used to output the body of the method. + The number of arguments that will be passed to the delegate. + A delegate that does type conversion and calls the method represented by this + object. + + + + Binds to a method group using the default javascript rules (extra parameter values are + ignored, missing parameter values are replaced with "undefined"). + + + + + Creates a new JSBinder instance. + + An array of methods to bind to. + + + + Creates a new JSBinder instance. + + An enumerable list of methods to bind to. + + + + Generates a method that does type conversion and calls the bound method. + + The ILGenerator used to output the body of the method. + The number of arguments that will be passed to the delegate. + A delegate that does type conversion and calls the method represented by this + object. + + + + Pops the value on the stack, converts it from one type to another, then pushes the + result onto the stack. Undefined is converted to the given default value. + + The IL generator. + The type to convert from. + The type and default value of the target parameter. + + + + Pops the value on the stack, converts it from one type to another, then pushes the + result onto the stack. + + The IL generator. + The type to convert from. + The type to convert to. + + + + Pushes the result of converting undefined to the given type onto the stack. + + The IL generator. + The type to convert to, and optionally a default value. + + + + Represents a single method that the JS function binder can call. + + + + + Creates a new FunctionBinderMethod instance. + + The method to call. + Flags that modify the binding process. + + + + Creates a new FunctionBinderMethod instance. + + Flags that modify the binding process. + + + + Gets the flags that were passed to the constructor. + + + + + Gets a value that indicates whether the script engine should be passed as the first + parameter. Always false for instance methods. + + + + + Gets a value that indicates whether the "this" object should be passed as the first + parameter (or the second parameter if HasEngineParameter is true). Always false + for instance methods. + + + + + Gets the type of the explicit "this" value passed to this method. Will be null + if there is no explicit this value. + + + + + Gets the maximum number of parameters that this method requires (excluding the implicit + this parameter). + + + + + Gets an array of method parameters. + + An array of ParameterInfo instances describing the method parameters. + + + + Gets an enumerable list of argument objects, equal in size to + . + + The number of arguments to return. + An enumerable list of argument objects. + + + + Selects a method from a list of candidates and performs type conversion from actual + argument type to formal argument type. + + + + + Creates a new Binder instance. + + A method to bind to. + + + + Creates a new Binder instance. + + An enumerable list of methods to bind to. At least one + method must be provided. Every method must have the same name and declaring type. + + + + Gets the name of the target methods. + + + + + Gets the full name of the target methods, including the type name. + + + + + Gets the maximum number of arguments of any of the target methods. Used to set the + length property on the function. + + + + + Represents a line and column number in a source file. + + + + + Creates a new SourceCodePosition instance. + + The line number. Must be greater than zero. + The column number. Must be greater than zero. + + + + Gets the line number. + + + + + Gets the column number. + + + + + Represents a portion of source code. + + + + + Creates a new SourceCodeSpan instance. + + The start line of this SourceCodeSpan. Must be greater than + zero. + The start column of this SourceCodeSpan. Must be greater + than zero. + The end line of this SourceCodeSpan. Must be greater than + . + The end column of this SourceCodeSpan. Must be greater than + . + + + + Creates a new SourceCodeSpan instance. + + The start line and column of this SourceCodeSpan. + The end line and column of this SourceCodeSpan. + + + + Gets the starting line number of this range. + + + + + Gets the starting column number of this range. + + + + + Gets the ending line number of this range. + + + + + Gets the ending column number of this range. + + + + + Outputs IL that converts between types. + + + + + Pops the value on the stack, converts it to the given type, then pushes the result + onto the stack. + + The IL generator. + The type to convert from. + The type to convert to. + + + + Pops the value on the stack, converts it to the given type, then pushes the result + onto the stack. + + The IL generator. + The type to convert from. + The type to convert to. + Information about the line number, function and path. + + + + Pops the value on the stack, converts it to the given type, then pushes the result + onto the stack. + + The IL generator. + The type to convert from. + The type to convert to. + The path of the javascript source file that is currently executing. + The name of the currently executing function. + The line number of the statement that is currently executing. + + + + Pops the value on the stack, converts it to a boolean, then pushes the boolean result + onto the stack. + + The IL generator. + The type to convert from. + + + + Pops the value on the stack, converts it to an integer, then pushes the integer result + onto the stack. + + The IL generator. + The type to convert from. + + + + Pops the value on the stack, converts it to an integer, then pushes the integer result + onto the stack. Large numbers wrap (i.e. 4294967296 -> 0). + + The IL generator. + The type to convert from. + + + + Pops the value on the stack, converts it to an unsigned integer, then pushes the + integer result onto the stack. Large numbers wrap (i.e. 4294967296 -> 0). + + The IL generator. + The type to convert from. + + + + Pops the value on the stack, converts it to a double, then pushes the double result + onto the stack. + + The IL generator. + The type to convert from. + + + + Pops the value on the stack, converts it to a string, then pushes the result onto the + stack. + + The IL generator. + The type to convert from. + + + + Pops the value on the stack, converts it to a concatenated string, then pushes the result + onto the stack. + + The IL generator. + The type to convert from. + + + + Pops the value on the stack, converts it to a javascript object, then pushes the result + onto the stack. + + The IL generator. + The type to convert from. + Information about the line number, function and path. + + + + Pops the value on the stack, converts it to a javascript object, then pushes the result + onto the stack. + + The IL generator. + The type to convert from. + The path of the javascript source file that is currently executing. + The name of the currently executing function. + The line number of the statement that is currently executing. + + + + Pops the value on the stack, converts it to a primitive value, then pushes the result + onto the stack. + + The IL generator. + The type to convert from. + Specifies whether toString() or valueOf() should be + preferred when converting to a primitive. + + + + Pops the value on the stack, converts it to an object, then pushes the result onto the + stack. + + The IL generator. + The type to convert from. + + + + Pops the value on the stack, converts it to a property key (either a symbol or a + string), then pushes the result onto the stack. + + The IL generator. + The type to convert from. + + + + Outputs IL for misc tasks. + + + + + Emits undefined. + + The IL generator. + + + + Emits null. + + The IL generator. + + + + Emits a default value of the given type. + + The IL generator. + The type of value to generate. + + + + Emits a dummy value of the given type. + + The IL generator. + The type of value to generate. + + + + Emits a JavaScriptException. + + The IL generator. + The type of error to generate, e.g. Error, RangeError, etc. + The error message. + + + + Emits a JavaScriptException. + + The IL generator. + The type of error to generate, e.g. Error, RangeError, etc. + The error message. + Information about the line number, function and path. + + + + Emits a JavaScriptException. + + The IL generator. + The type of error to generate, e.g. Error, RangeError, etc. + The error message. + The path of the javascript source file that is currently executing. + The name of the currently executing function. + The line number of the statement that is currently executing. + + + + Emits the given value. Only possible for certain types. + + The IL generator. + The value to emit. + + + + Pushes the value of the execution context onto the stack. + + The IL generator. + + + + Pushes a reference to the script engine onto the stack. + + The IL generator. + + + + Pushes the value of the this keyword onto the stack. + + The IL generator. + + + + Pushes a reference to the current function onto the stack. + + The IL generator. + + + + Pushes a reference to the 'new.target' value for the current function onto the stack. + + The IL generator. + + + + Pushes a reference to the array of argument values for the current function onto the + stack. + + The IL generator. + + + + Represents a generator of CIL bytes. + + + + + Gets a reference to the method that we are generating IL for. + + + + + Emits a return statement and finalizes the generated code. Do not emit any more + instructions after calling this method. + + + + + Pops the value from the top of the stack. + + + + + Duplicates the value on the top of the stack. + + + + + Creates a label without setting its position. + + A new label. + + + + Defines the position of the given label. + + The label to define. + + + + Creates a label and sets its position. + + A new label. + + + + Unconditionally branches to the given label. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is zero, false or + null. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is non-zero, true or + non-null. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is zero, false or + null. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is non-zero, true or + non-null. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is zero, false or + null. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is non-zero, true or + non-null. + + The label to branch to. + + + + Branches to the given label if the two values on the top of the stack are equal. + + The label to branch to. + + + + Branches to the given label if the two values on the top of the stack are not equal. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than the second + value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than the second + value on the stack. If the operands are integers then they are treated as if they are + unsigned. If the operands are floating point numbers then a NaN value will trigger a + branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than or equal to + the second value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than or equal to + the second value on the stack. If the operands are integers then they are treated as + if they are unsigned. If the operands are floating point numbers then a NaN value will + trigger a branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than the second + value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than the second + value on the stack. If the operands are integers then they are treated as if they are + unsigned. If the operands are floating point numbers then a NaN value will trigger a + branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than or equal to + the second value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than or equal to + the second value on the stack. If the operands are integers then they are treated as + if they are unsigned. If the operands are floating point numbers then a NaN value will + trigger a branch. + + The label to branch to. + + + + Returns from the current method. A value is popped from the stack and used as the + return value. + + + + + Creates a jump table. A value is popped from the stack - this value indicates the + index of the label in the array to jump to. + + A array of labels. + + + + Declares a new local variable. + + The type of the local variable. + The name of the local variable. Can be null. + A new local variable. + + + + Declares a new local variable. + + The type of the local variable. + The name of the local variable. Can be null. + A new local variable. + + + + Pushes the value of the given variable onto the stack. + + The variable whose value will be pushed. + + + + Pushes the address of the given variable onto the stack. + + The variable whose address will be pushed. + + + + Pops the value from the top of the stack and stores it in the given local variable. + + The variable to store the value. + + + + Pushes the value of the method argument with the given index onto the stack. + + The index of the argument to push onto the stack. + + + + Pops a value from the stack and stores it in the method argument with the given index. + + The index of the argument to store into. + + + + Retrieves a temporary variable with the given type, reusing a previous variable if + possible. + + The type of variable to create. + A temporary variable + + + + Retrieves a temporary variable with the given type, reusing a previous variable if + possible. + + The type of variable to create. + A temporary variable + + + + Indicates that the given temporary variable is no longer needed. + + The temporary variable created using CreateTemporaryVariable(). + + + + Pushes null onto the stack. + + + + + Pushes a constant value onto the stack. + + The boolean to push onto the stack. + + + + Pushes a constant value onto the stack. + + The integer to push onto the stack. + + + + Pushes an unsigned constant value onto the stack. + + The integer to push onto the stack. + + + + Pushes a 64-bit constant value onto the stack. + + The 64-bit integer to push onto the stack. + + + + Pushes an unsigned 64-bit constant value onto the stack. + + The 64-bit integer to push onto the stack. + + + + Pushes a constant value onto the stack. + + The number to push onto the stack. + + + + Pushes a constant value onto the stack. + + The string to push onto the stack. + + + + Pushes a constant value onto the stack. + + The string to push onto the stack. Can be null. + + + + Pushes a constant value onto the stack. + + The enum value to push onto the stack. + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is equal to the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is greater than the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is greater than the second, or 0 otherwise. Produces 1 if one or both + of the arguments are NaN. Integers are considered to be unsigned. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is less than the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is less than the second, or 0 otherwise. Produces 1 if one or both + of the arguments are NaN. Integers are considered to be unsigned. + + + + + Pops two values from the stack, adds them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, subtracts the second from the first, then pushes the + result to the stack. + + + + + Pops two values from the stack, multiplies them together, then pushes the + result to the stack. + + + + + Pops two values from the stack, divides the first by the second, then pushes the + result to the stack. + + + + + Pops two values from the stack, divides the first by the second, then pushes the + remainder to the stack. + + + + + Pops a value from the stack, negates it, then pushes it back onto the stack. + + + + + Pops two values from the stack, ANDs them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, ORs them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, XORs them together, then pushes the result to the + stack. + + + + + Pops a value from the stack, inverts it, then pushes the result to the stack. + + + + + Pops two values from the stack, shifts the first to the left, then pushes the result + to the stack. + + + + + Pops two values from the stack, shifts the first to the right, then pushes the result + to the stack. The sign bit is preserved. + + + + + Pops two values from the stack, shifts the first to the right, then pushes the result + to the stack. The sign bit is not preserved. + + + + + Pops a value from the stack, converts it to an object reference, then pushes it back onto + the stack. + + The type of value to box. This should be a value type. + + + + Pops a value from the stack, converts it to an object reference, then pushes it back onto + the stack. + + The type of value to box. This should be a value type. + + + + Pops an object reference (representing a boxed value) from the stack, extracts the + address, then pushes that address onto the stack. + + The type of the boxed value. This should be a value type. + + + + Pops an object reference (representing a boxed value) from the stack, extracts the + address, then pushes that address onto the stack. + + The type of the boxed value. This should be a value type. + + + + Pops an object reference (representing a boxed value) from the stack, extracts the value, + then pushes the value onto the stack. + + The type of the boxed value. This should be a value type. + + + + Pops an object reference (representing a boxed value) from the stack, extracts the value, + then pushes the value onto the stack. + + The type of the boxed value. This should be a value type. + + + + Pops a value from the stack, converts it to a signed integer, then pushes it back onto + the stack. + + + + + Pops a value from the stack, converts it to an unsigned integer, then pushes it back + onto the stack. + + + + + Pops a value from the stack, converts it to a signed 64-bit integer, then pushes it + back onto the stack. + + + + + Pops a value from the stack, converts it to an unsigned 64-bit integer, then pushes it + back onto the stack. + + + + + Pops a value from the stack, converts it to a double, then pushes it back onto + the stack. + + + + + Pops an unsigned integer from the stack, converts it to a double, then pushes it back onto + the stack. + + + + + Pops the constructor arguments off the stack and creates a new instance of the object. + + The constructor that is used to initialize the object. + + + + Pops the method arguments off the stack, calls the given method, then pushes the result + to the stack (if there was one). Identical to CallStatic() if the method is a static + method (or is declared on a value type) or CallVirtual() otherwise. + + The method to call. + + + + Pops the method arguments off the stack, calls the given method, then pushes the result + to the stack (if there was one). This operation can be used to call instance methods, + but virtual overrides will not be called and a null check will not be performed at the + callsite. + + The method to call. + + + + Pops the method arguments off the stack, calls the given method, then pushes the result + to the stack (if there was one). This operation cannot be used to call static methods. + Virtual overrides are obeyed and a null check is performed. + + The method to call. + The method is static. + + + + Pushes the value of the given field onto the stack. + + The field whose value will be pushed. + + + + Pops a value off the stack and stores it in the given field. + + The field to modify. + + + + Pops an object off the stack, checks that the object inherits from or implements the + given type, and pushes the object onto the stack if the check was successful or + throws an InvalidCastException if the check failed. + + The type of the class the object inherits from or the interface the + object implements. + + + + Changes the type of the value on the top of the stack, for the purpose of passing + verification. Doesn't generate any IL instructions. + + The type to convert to. + + + + Pops an object off the stack, checks that the object inherits from or implements the + given type, and pushes either the object (if the check was successful) or null + (if the check failed) onto the stack. + + The type of the class the object inherits from or the interface the + object implements. + + + + Pushes a RuntimeTypeHandle corresponding to the given type onto the evaluation stack. + + The type to convert to a RuntimeTypeHandle. + + + + Pushes a RuntimeMethodHandle corresponding to the given method onto the evaluation + stack. + + The method to convert to a RuntimeMethodHandle. + + + + Pushes a RuntimeFieldHandle corresponding to the given field onto the evaluation stack. + + The type to convert to a RuntimeFieldHandle. + + + + Pushes a pointer to the native code implementing the given method onto the evaluation + stack. The virtual qualifier will be ignored, if present. + + The method to retrieve a pointer for. + + + + Pushes a pointer to the native code implementing the given method onto the + evaluation stack. This method cannot be used to retrieve a pointer to a static method. + + The method to retrieve a pointer for. + The method is static. + + + + Pushes a pointer to the native code implementing the given method onto the evaluation + stack. This method is identical to LoadStaticMethodPointer() if the method is a static + method (or is declared on a value type) or LoadVirtualMethodPointer() otherwise. + + The method to retrieve a pointer for. + + + + Pops a managed or native pointer off the stack and initializes the referenced type with + zeros. + + The type the pointer on the top of the stack is pointing to. + + + + Pops the size of the array off the stack and pushes a new array of the given type onto + the stack. + + The element type. + + + + Pops the array and index off the stack and pushes the element value onto the stack. + + The element type. + + + + Pops the array and index off the stack and pushes the element value onto the stack. + + The element type. + + + + Pops the array, index and value off the stack and stores the value in the array. + + The element type. + + + + Pops the array, index and value off the stack and stores the value in the array. + + The element type. + + + + Pops an array off the stack and pushes the length of the array onto the stack. + + + + + Pops an exception object off the stack and throws the exception. + + + + + Re-throws the current exception. + + + + + Begins a try-catch-finally block. After issuing this instruction any following + instructions are conceptually within the try block. + + + + + Ends a try-catch-finally block. + + + + + Begins a catch block. BeginExceptionBlock() must have already been called. + + The type of exception to handle. + + + + Begins a finally block. BeginExceptionBlock() must have already been called. + + + + + Begins a filter block. BeginExceptionBlock() must have already been called. + + + + + Begins a fault block. BeginExceptionBlock() must have already been called. + + + + + Unconditionally branches to the given label. Unlike the regular branch instruction, + this instruction can exit out of try, filter and catch blocks. + + The label to branch to. + + + + This instruction can be used from within a finally block to resume the exception + handling process. It is the only valid way of leaving a finally block. + + + + + This instruction can be used from within a fault block to resume the exception + handling process. It is the only valid way of leaving a fault block. + + + + + This instruction can be used from within a filter block to indicate whether the + exception will be handled. It pops an integer from the stack which should be 0 + to continue searching for an exception handler or 1 to use the handler + associated with the filter. EndFilter() must be called at the end of a filter block. + + + + + Triggers a breakpoint in an attached debugger. + + + + + Does nothing. + + + + + Represents a label in IL code. + + + + + Represents a label in IL code. + + + + + Creates a new label instance. + + The underlying label. + + + + Gets the underlying label. + + + + + Represents a local variable in CIL code. + + + + + Gets the zero-based index of the local variable within the method body. + + + + + Gets the type of the local variable. + + + + + Gets the local variable name, or null if a name was not provided. + + + + + Represents a local variable in CIL code. + + + + + Creates a new local variable instance. + + The underlying local variable. + The name of the local variable. Can be null. + + + + Gets the underlying local variable. + + + + + Gets the zero-based index of the local variable within the method body. + + + + + Gets the type of the local variable. + + + + + Gets the local variable name, or null if a name was not provided. + + + + + Represents a generator that logs all operations. + + + + + Creates a new LoggingILGenerator instance. + + The ILGenerator that is used to output the IL. + + + + Gets a reference to the method that we are generating IL for. + + + + + Emits a return statement and finalizes the generated code. Do not emit any more + instructions after calling this method. + + + + + Pops the value from the top of the stack. + + + + + Duplicates the value on the top of the stack. + + + + + Creates a label without setting its position. + + A new label. + + + + Defines the position of the given label. + + The label to define. + + + + Unconditionally branches to the given label. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is zero. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is non-zero, true or + non-null. + + The label to branch to. + + + + Branches to the given label if the two values on the top of the stack are equal. + + The label to branch to. + + + + Branches to the given label if the two values on the top of the stack are not equal. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than the second + value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than the second + value on the stack. If the operands are integers then they are treated as if they are + unsigned. If the operands are floating point numbers then a NaN value will trigger a + branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than or equal to + the second value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than or equal to + the second value on the stack. If the operands are integers then they are treated as + if they are unsigned. If the operands are floating point numbers then a NaN value will + trigger a branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than the second + value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than the second + value on the stack. If the operands are integers then they are treated as if they are + unsigned. If the operands are floating point numbers then a NaN value will trigger a + branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than or equal to + the second value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than or equal to + the second value on the stack. If the operands are integers then they are treated as + if they are unsigned. If the operands are floating point numbers then a NaN value will + trigger a branch. + + The label to branch to. + + + + Returns from the current method. A value is popped from the stack and used as the + return value. + + + + + Creates a jump table. A value is popped from the stack - this value indicates the + index of the label in the array to jump to. + + A array of labels. + + + + Declares a new local variable. + + The type of the local variable. + The name of the local variable. Can be null. + A new local variable. + + + + Pushes the value of the given variable onto the stack. + + The variable whose value will be pushed. + + + + Pushes the address of the given variable onto the stack. + + The variable whose address will be pushed. + + + + Pops the value from the top of the stack and stores it in the given local variable. + + The variable to store the value. + + + + Pushes the value of the method argument with the given index onto the stack. + + The index of the argument to push onto the stack. + + + + Pops a value from the stack and stores it in the method argument with the given index. + + The index of the argument to store into. + + + + Pushes null onto the stack. + + + + + Pushes a constant value onto the stack. + + The integer to push onto the stack. + + + + Pushes a 64-bit constant value onto the stack. + + The 64-bit integer to push onto the stack. + + + + Pushes a constant value onto the stack. + + The number to push onto the stack. + + + + Pushes a constant value onto the stack. + + The string to push onto the stack. + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is equal to the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is greater than the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is greater than the second, or 0 otherwise. Produces 1 if one or both + of the arguments are NaN. Integers are considered to be unsigned. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is less than the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is less than the second, or 0 otherwise. Produces 1 if one or both + of the arguments are NaN. Integers are considered to be unsigned. + + + + + Pops two values from the stack, adds them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, subtracts the second from the first, then pushes the + result to the stack. + + + + + Pops two values from the stack, multiplies them together, then pushes the + result to the stack. + + + + + Pops two values from the stack, divides the first by the second, then pushes the + result to the stack. + + + + + Pops two values from the stack, divides the first by the second, then pushes the + remainder to the stack. + + + + + Pops a value from the stack, negates it, then pushes it back onto the stack. + + + + + Pops two values from the stack, ANDs them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, ORs them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, XORs them together, then pushes the result to the + stack. + + + + + Pops a value from the stack, inverts it, then pushes the result to the stack. + + + + + Pops two values from the stack, shifts the first to the left, then pushes the result + to the stack. + + + + + Pops two values from the stack, shifts the first to the right, then pushes the result + to the stack. The sign bit is preserved. + + + + + Pops two values from the stack, shifts the first to the right, then pushes the result + to the stack. The sign bit is not preserved. + + + + + Pops a value from the stack, converts it to an object reference, then pushes it back onto + the stack. + + + + + Pops an object reference (representing a boxed value) from the stack, extracts the + address, then pushes that address onto the stack. + + The type of the boxed value. This should be a value type. + + + + Pops an object reference (representing a boxed value) from the stack, extracts the value, + then pushes the value onto the stack. + + The type of the boxed value. This should be a value type. + + + + Pops a value from the stack, converts it to a signed integer, then pushes it back onto + the stack. + + + + + Pops a value from the stack, converts it to an unsigned integer, then pushes it back + onto the stack. + + + + + Pops a value from the stack, converts it to a signed 64-bit integer, then pushes it + back onto the stack. + + + + + Pops a value from the stack, converts it to an unsigned 64-bit integer, then pushes it + back onto the stack. + + + + + Pops a value from the stack, converts it to a double, then pushes it back onto + the stack. + + + + + Pops an unsigned integer from the stack, converts it to a double, then pushes it back onto + the stack. + + + + + Pops the constructor arguments off the stack and creates a new instance of the object. + + The constructor that is used to initialize the object. + + + + Pops the method arguments off the stack, calls the given method, then pushes the result + to the stack (if there was one). This operation can be used to call instance methods, + but virtual overrides will not be called and a null check will not be performed at the + callsite. + + The method to call. + + + + Pops the method arguments off the stack, calls the given method, then pushes the result + to the stack (if there was one). This operation cannot be used to call static methods. + Virtual overrides are obeyed and a null check is performed. + + The method to call. + The method is static. + + + + Pushes the value of the given field onto the stack. + + The field whose value will be pushed. + + + + Pops a value off the stack and stores it in the given field. + + The field to modify. + + + + Pops an object off the stack, checks that the object inherits from or implements the + given type, and pushes the object onto the stack if the check was successful or + throws an InvalidCastException if the check failed. + + The type of the class the object inherits from or the interface the + object implements. + + + + Pops an object off the stack, checks that the object inherits from or implements the + given type, and pushes either the object (if the check was successful) or null + (if the check failed) onto the stack. + + The type of the class the object inherits from or the interface the + object implements. + + + + Pushes a RuntimeTypeHandle corresponding to the given type onto the evaluation stack. + + The type to convert to a RuntimeTypeHandle. + + + + Pushes a RuntimeMethodHandle corresponding to the given method onto the evaluation + stack. + + The method to convert to a RuntimeMethodHandle. + + + + Pushes a RuntimeFieldHandle corresponding to the given field onto the evaluation stack. + + The type to convert to a RuntimeFieldHandle. + + + + Pushes a pointer to the native code implementing the given method onto the evaluation + stack. The virtual qualifier will be ignored, if present. + + The method to retrieve a pointer for. + + + + Pushes a pointer to the native code implementing the given method onto the evaluation + stack. This method cannot be used to retrieve a pointer to a static method. + + The method to retrieve a pointer for. + The method is static. + + + + Pops a managed or native pointer off the stack and initializes the referenced type with + zeros. + + The type the pointer on the top of the stack is pointing to. + + + + Pops the size of the array off the stack and pushes a new array of the given type onto + the stack. + + The element type. + + + + Pops the array and index off the stack and pushes the element value onto the stack. + + The element type. + + + + Pops the array, index and value off the stack and stores the value in the array. + + The element type. + + + + Pops an array off the stack and pushes the length of the array onto the stack. + + + + + Pops an exception object off the stack and throws the exception. + + + + + Rethrows the current exception. + + + + + Begins a try-catch-finally block. After issuing this instruction any following + instructions are conceptually within the try block. + + + + + Ends a try-catch-finally block. BeginExceptionBlock() must have already been called. + + + + + Begins a catch block. BeginExceptionBlock() must have already been called. + + The type of exception to handle. + + + + Begins a finally block. BeginExceptionBlock() must have already been called. + + + + + Begins a filter block. BeginExceptionBlock() must have already been called. + + + + + Begins a fault block. BeginExceptionBlock() must have already been called. + + + + + Unconditionally branches to the given label. Unlike the regular branch instruction, + this instruction can exit out of try, filter and catch blocks. + + The label to branch to. + + + + This instruction can be used from within a finally block to resume the exception + handling process. It is the only valid way of leaving a finally block. + + + + + This instruction can be used from within a filter block to indicate whether the + exception will be handled. It pops an integer from the stack which should be 0 + to continue searching for an exception handler or 1 to use the handler + associated with the filter. EndFilter() must be called at the end of a filter block. + + + + + Triggers a breakpoint in an attached debugger. + + + + + Does nothing. + + + + + Converts the object to a string. + + A string containing the IL generated by this object. + + + + Outputs an instruction to the log. + + The instruction to output. + + + + Outputs an instruction and a label to the log. + + The instruction to output. + The label to output. + + + + Outputs an instruction and a number of labels to the log. + + The instruction to output. + The labels to output. + + + + Appends the name of a label to the log. + + The label to convert. + A string representation of the label. + + + + Outputs an instruction and a variable to the log. + + The instruction to output. + The variable to output. + + + + Outputs an instruction and an integer to the log. + + The instruction to output. + The integer to output. + + + + Outputs an instruction and a 64-bit integer to the log. + + The instruction to output. + The 64-bit integer to output. + + + + Outputs an instruction and a floating-point value to the log. + + The instruction to output. + The floating-point vaue to output. + + + + Outputs an instruction and a string literal to the log. + + The instruction to output. + The string literal to output. + + + + Outputs an instruction and a type to the log. + + The instruction to output. + The type to output. + + + + Outputs an instruction and a method to the log. + + The instruction to output. + The method to output. + + + + Outputs an instruction and a field to the log. + + The instruction to output. + The field to output. + + + + Outputs an instruction and a constructor to the log. + + The instruction to output. + The constructor to output. + + + + Outputs an instruction and an arbitrary suffix to the log. + + The instruction to output. + A suffix to output. + + + + Outputs arbitrary text to the log. + + The text to output. + + + + Represents a generator of CIL bytes. + + + + + Creates a new ReflectionEmitILGenerator instance from a DynamicMethod. + + The DynamicMethod to emit IL for. + Indicates whether to emit debugging information, like symbol names. + + + + Gets a reference to the method that we are generating IL for. + + + + + Emits a return statement and finalizes the generated code. Do not emit any more + instructions after calling this method. + + + + + Pops the value from the top of the stack. + + + + + Duplicates the value on the top of the stack. + + + + + Creates a label without setting its position. + + A new label. + + + + Defines the position of the given label. + + The label to define. + + + + Unconditionally branches to the given label. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is zero. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is non-zero, true or + non-null. + + The label to branch to. + + + + Branches to the given label if the two values on the top of the stack are equal. + + The label to branch to. + + + + Branches to the given label if the two values on the top of the stack are not equal. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than the second + value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than the second + value on the stack. If the operands are integers then they are treated as if they are + unsigned. If the operands are floating point numbers then a NaN value will trigger a + branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than or equal to + the second value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than or equal to + the second value on the stack. If the operands are integers then they are treated as + if they are unsigned. If the operands are floating point numbers then a NaN value will + trigger a branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than the second + value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than the second + value on the stack. If the operands are integers then they are treated as if they are + unsigned. If the operands are floating point numbers then a NaN value will trigger a + branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than or equal to + the second value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than or equal to + the second value on the stack. If the operands are integers then they are treated as + if they are unsigned. If the operands are floating point numbers then a NaN value will + trigger a branch. + + The label to branch to. + + + + Returns from the current method. A value is popped from the stack and used as the + return value. + + + + + Creates a jump table. A value is popped from the stack - this value indicates the + index of the label in the array to jump to. + + A array of labels. + + + + Declares a new local variable. + + The type of the local variable. + The name of the local variable. Can be null. + A new local variable. + + + + Pushes the value of the given variable onto the stack. + + The variable whose value will be pushed. + + + + Pushes the address of the given variable onto the stack. + + The variable whose address will be pushed. + + + + Pops the value from the top of the stack and stores it in the given local variable. + + The variable to store the value. + + + + Pushes the value of the method argument with the given index onto the stack. + + The index of the argument to push onto the stack. + + + + Pops a value from the stack and stores it in the method argument with the given index. + + The index of the argument to store into. + + + + Pushes null onto the stack. + + + + + Pushes a constant value onto the stack. + + The integer to push onto the stack. + + + + Pushes a 64-bit constant value onto the stack. + + The 64-bit integer to push onto the stack. + + + + Pushes a constant value onto the stack. + + The number to push onto the stack. + + + + Pushes a constant value onto the stack. + + The string to push onto the stack. + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is equal to the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is greater than the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is greater than the second, or 0 otherwise. Produces 1 if one or both + of the arguments are NaN. Integers are considered to be unsigned. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is less than the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is less than the second, or 0 otherwise. Produces 1 if one or both + of the arguments are NaN. Integers are considered to be unsigned. + + + + + Pops two values from the stack, adds them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, subtracts the second from the first, then pushes the + result to the stack. + + + + + Pops two values from the stack, multiplies them together, then pushes the + result to the stack. + + + + + Pops two values from the stack, divides the first by the second, then pushes the + result to the stack. + + + + + Pops two values from the stack, divides the first by the second, then pushes the + remainder to the stack. + + + + + Pops a value from the stack, negates it, then pushes it back onto the stack. + + + + + Pops two values from the stack, ANDs them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, ORs them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, XORs them together, then pushes the result to the + stack. + + + + + Pops a value from the stack, inverts it, then pushes the result to the stack. + + + + + Pops two values from the stack, shifts the first to the left, then pushes the result + to the stack. + + + + + Pops two values from the stack, shifts the first to the right, then pushes the result + to the stack. The sign bit is preserved. + + + + + Pops two values from the stack, shifts the first to the right, then pushes the result + to the stack. The sign bit is not preserved. + + + + + Pops a value from the stack, converts it to an object reference, then pushes it back onto + the stack. + + + + + Pops an object reference (representing a boxed value) from the stack, extracts the + address, then pushes that address onto the stack. + + The type of the boxed value. This should be a value type. + + + + Pops an object reference (representing a boxed value) from the stack, extracts the value, + then pushes the value onto the stack. + + The type of the boxed value. This should be a value type. + + + + Pops a value from the stack, converts it to a signed integer, then pushes it back onto + the stack. + + + + + Pops a value from the stack, converts it to an unsigned integer, then pushes it back + onto the stack. + + + + + Pops a value from the stack, converts it to a signed 64-bit integer, then pushes it + back onto the stack. + + + + + Pops a value from the stack, converts it to an unsigned 64-bit integer, then pushes it + back onto the stack. + + + + + Pops a value from the stack, converts it to a double, then pushes it back onto + the stack. + + + + + Pops an unsigned integer from the stack, converts it to a double, then pushes it back onto + the stack. + + + + + Pops the constructor arguments off the stack and creates a new instance of the object. + + The constructor that is used to initialize the object. + + + + Pops the method arguments off the stack, calls the given method, then pushes the result + to the stack (if there was one). This operation can be used to call instance methods, + but virtual overrides will not be called and a null check will not be performed at the + callsite. + + The method to call. + + + + Pops the method arguments off the stack, calls the given method, then pushes the result + to the stack (if there was one). This operation cannot be used to call static methods. + Virtual overrides are obeyed and a null check is performed. + + The method to call. + The method is static. + + + + Pushes the value of the given field onto the stack. + + The field whose value will be pushed. + + + + Pops a value off the stack and stores it in the given field. + + The field to modify. + + + + Pops an object off the stack, checks that the object inherits from or implements the + given type, and pushes the object onto the stack if the check was successful or + throws an InvalidCastException if the check failed. + + The type of the class the object inherits from or the interface the + object implements. + + + + Pops an object off the stack, checks that the object inherits from or implements the + given type, and pushes either the object (if the check was successful) or null + (if the check failed) onto the stack. + + The type of the class the object inherits from or the interface the + object implements. + + + + Pushes a RuntimeTypeHandle corresponding to the given type onto the evaluation stack. + + The type to convert to a RuntimeTypeHandle. + + + + Pushes a RuntimeMethodHandle corresponding to the given method onto the evaluation + stack. + + The method to convert to a RuntimeMethodHandle. + + + + Pushes a RuntimeFieldHandle corresponding to the given field onto the evaluation stack. + + The type to convert to a RuntimeFieldHandle. + + + + Pushes a pointer to the native code implementing the given method onto the evaluation + stack. The virtual qualifier will be ignored, if present. + + The method to retrieve a pointer for. + + + + Pushes a pointer to the native code implementing the given method onto the evaluation + stack. This method cannot be used to retrieve a pointer to a static method. + + The method to retrieve a pointer for. + The method is static. + + + + Pops a managed or native pointer off the stack and initializes the referenced type with + zeros. + + The type the pointer on the top of the stack is pointing to. + + + + Pops the size of the array off the stack and pushes a new array of the given type onto + the stack. + + The element type. + + + + Pops the array and index off the stack and pushes the element value onto the stack. + + The element type. + + + + Pops the array, index and value off the stack and stores the value in the array. + + The element type. + + + + Pops an array off the stack and pushes the length of the array onto the stack. + + + + + Pops an exception object off the stack and throws the exception. + + + + + Rethrows the current exception. + + + + + Begins a try-catch-finally block. After issuing this instruction any following + instructions are conceptually within the try block. + + + + + Ends a try-catch-finally block. BeginExceptionBlock() must have already been called. + + + + + Begins a catch block. BeginExceptionBlock() must have already been called. + + The type of exception to handle. + + + + Begins a finally block. BeginExceptionBlock() must have already been called. + + + + + Begins a filter block. BeginExceptionBlock() must have already been called. + + + + + Begins a fault block. BeginExceptionBlock() must have already been called. + + + + + Unconditionally branches to the given label. Unlike the regular branch instruction, + this instruction can exit out of try, filter and catch blocks. + + The label to branch to. + + + + This instruction can be used from within a finally block to resume the exception + handling process. It is the only valid way of leaving a finally block. + + + + + This instruction can be used from within a filter block to indicate whether the + exception will be handled. It pops an integer from the stack which should be 0 + to continue searching for an exception handler or 1 to use the handler + associated with the filter. EndFilter() must be called at the end of a filter block. + + + + + Triggers a breakpoint in an attached debugger. + + + + + Does nothing. + + + + + Represents a generator that checks commands for correctness. + + + + + Creates a new LoggingILGenerator instance. + + The ILGenerator that is used to output the IL. + + + + Gets a reference to the method that we are generating IL for. + + + + + Emits a return statement and finalizes the generated code. Do not emit any more + instructions after calling this method. + + + + + Pops the value from the top of the stack. + + + + + Duplicates the value on the top of the stack. + + + + + Creates a label without setting its position. + + A new label. + + + + Defines the position of the given label. + + The label to define. + + + + Unconditionally branches to the given label. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is zero. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is non-zero, true or + non-null. + + The label to branch to. + + + + Branches to the given label if the two values on the top of the stack are equal. + + The label to branch to. + + + + Branches to the given label if the two values on the top of the stack are not equal. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than the second + value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than the second + value on the stack. If the operands are integers then they are treated as if they are + unsigned. If the operands are floating point numbers then a NaN value will trigger a + branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than or equal to + the second value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than or equal to + the second value on the stack. If the operands are integers then they are treated as + if they are unsigned. If the operands are floating point numbers then a NaN value will + trigger a branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than the second + value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than the second + value on the stack. If the operands are integers then they are treated as if they are + unsigned. If the operands are floating point numbers then a NaN value will trigger a + branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than or equal to + the second value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than or equal to + the second value on the stack. If the operands are integers then they are treated as + if they are unsigned. If the operands are floating point numbers then a NaN value will + trigger a branch. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is zero, false or + null. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is non-zero, true or + non-null. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is zero, false or + null. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is non-zero, true or + non-null. + + The label to branch to. + + + + Returns from the current method. A value is popped from the stack and used as the + return value. + + + + + Creates a jump table. A value is popped from the stack - this value indicates the + index of the label in the array to jump to. + + A array of labels. + + + + Declares a new local variable. + + The type of the local variable. + The name of the local variable. Can be null. + A new local variable. + + + + Pushes the value of the given variable onto the stack. + + The variable whose value will be pushed. + + + + Pushes the address of the given variable onto the stack. + + The variable whose address will be pushed. + + + + Pops the value from the top of the stack and stores it in the given local variable. + + The variable to store the value. + + + + Pushes the value of the method argument with the given index onto the stack. + + The index of the argument to push onto the stack. + + + + Pops a value from the stack and stores it in the method argument with the given index. + + The index of the argument to store into. + + + + Pushes null onto the stack. + + + + + Pushes a constant value onto the stack. + + The boolean to push onto the stack. + + + + Pushes a constant value onto the stack. + + The integer to push onto the stack. + + + + Pushes a 64-bit constant value onto the stack. + + The 64-bit integer to push onto the stack. + + + + Pushes a constant value onto the stack. + + The number to push onto the stack. + + + + Pushes a constant value onto the stack. + + The string to push onto the stack. + + + + Pushes a constant value onto the stack. + + The enum value to push onto the stack. + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is equal to the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is greater than the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is greater than the second, or 0 otherwise. Produces 1 if one or both + of the arguments are NaN. Integers are considered to be unsigned. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is less than the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is less than the second, or 0 otherwise. Produces 1 if one or both + of the arguments are NaN. Integers are considered to be unsigned. + + + + + Pops two values from the stack, adds them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, subtracts the second from the first, then pushes the + result to the stack. + + + + + Pops two values from the stack, multiplies them together, then pushes the + result to the stack. + + + + + Pops two values from the stack, divides the first by the second, then pushes the + result to the stack. + + + + + Pops two values from the stack, divides the first by the second, then pushes the + remainder to the stack. + + + + + Pops a value from the stack, negates it, then pushes it back onto the stack. + + + + + Pops two values from the stack, ANDs them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, ORs them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, XORs them together, then pushes the result to the + stack. + + + + + Pops a value from the stack, inverts it, then pushes the result to the stack. + + + + + Pops two values from the stack, shifts the first to the left, then pushes the result + to the stack. + + + + + Pops two values from the stack, shifts the first to the right, then pushes the result + to the stack. The sign bit is preserved. + + + + + Pops two values from the stack, shifts the first to the right, then pushes the result + to the stack. The sign bit is not preserved. + + + + + Pops a value from the stack, converts it to an object reference, then pushes it back onto + the stack. + + + + + Pops an object reference (representing a boxed value) from the stack, extracts the + address, then pushes that address onto the stack. + + The type of the boxed value. This should be a value type. + + + + Pops an object reference (representing a boxed value) from the stack, extracts the value, + then pushes the value onto the stack. + + The type of the boxed value. This should be a value type. + + + + Pops a value from the stack, converts it to a signed integer, then pushes it back onto + the stack. + + + + + Pops a value from the stack, converts it to an unsigned integer, then pushes it back + onto the stack. + + + + + Pops a value from the stack, converts it to a signed 64-bit integer, then pushes it + back onto the stack. + + + + + Pops a value from the stack, converts it to an unsigned 64-bit integer, then pushes it + back onto the stack. + + + + + Pops a value from the stack, converts it to a double, then pushes it back onto + the stack. + + + + + Pops an unsigned integer from the stack, converts it to a double, then pushes it back onto + the stack. + + + + + Pops the constructor arguments off the stack and creates a new instance of the object. + + The constructor that is used to initialize the object. + + + + Pops the method arguments off the stack, calls the given method, then pushes the result + to the stack (if there was one). This operation can be used to call instance methods, + but virtual overrides will not be called and a null check will not be performed at the + callsite. + + The method to call. + + + + Pops the method arguments off the stack, calls the given method, then pushes the result + to the stack (if there was one). This operation cannot be used to call static methods. + Virtual overrides are obeyed and a null check is performed. + + The method to call. + The method is static. + + + + Pushes the value of the given field onto the stack. + + The field whose value will be pushed. + + + + Pops a value off the stack and stores it in the given field. + + The field to modify. + + + + Pops an object off the stack, checks that the object inherits from or implements the + given type, and pushes the object onto the stack if the check was successful or + throws an InvalidCastException if the check failed. + + The type of the class the object inherits from or the interface the + object implements. + + + + Changes the type of the value on the top of the stack, for the purpose of passing + verification. Doesn't generate any IL instructions. + + The type to convert to. + + + + Pops an object off the stack, checks that the object inherits from or implements the + given type, and pushes either the object (if the check was successful) or null + (if the check failed) onto the stack. + + The type of the class the object inherits from or the interface the + object implements. + + + + Pushes a RuntimeTypeHandle corresponding to the given type onto the evaluation stack. + + The type to convert to a RuntimeTypeHandle. + + + + Pushes a RuntimeMethodHandle corresponding to the given method onto the evaluation + stack. + + The method to convert to a RuntimeMethodHandle. + + + + Pushes a RuntimeFieldHandle corresponding to the given field onto the evaluation stack. + + The type to convert to a RuntimeFieldHandle. + + + + Pushes a pointer to the native code implementing the given method onto the evaluation + stack. The virtual qualifier will be ignored, if present. + + The method to retrieve a pointer for. + + + + Pushes a pointer to the native code implementing the given method onto the evaluation + stack. This method cannot be used to retrieve a pointer to a static method. + + The method to retrieve a pointer for. + The method is static. + + + + Pops a managed or native pointer off the stack and initializes the referenced type with + zeros. + + The type the pointer on the top of the stack is pointing to. + + + + Pops the size of the array off the stack and pushes a new array of the given type onto + the stack. + + The element type. + + + + Pops the array and index off the stack and pushes the element value onto the stack. + + The element type. + + + + Pops the array, index and value off the stack and stores the value in the array. + + The element type. + + + + Pops an array off the stack and pushes the length of the array onto the stack. + + + + + Pops an exception object off the stack and throws the exception. + + + + + Rethrows the current exception. + + + + + Begins a try-catch-finally block. After issuing this instruction any following + instructions are conceptually within the try block. + + + + + Ends a try-catch-finally block. BeginExceptionBlock() must have already been called. + + + + + Begins a catch block. BeginExceptionBlock() must have already been called. + + The type of exception to handle. + + + + Begins a finally block. BeginExceptionBlock() must have already been called. + + + + + Begins a filter block. BeginExceptionBlock() must have already been called. + + + + + Begins a fault block. BeginExceptionBlock() must have already been called. + + + + + Unconditionally branches to the given label. Unlike the regular branch instruction, + this instruction can exit out of try, filter and catch blocks. + + The label to branch to. + + + + This instruction can be used from within a finally block to resume the exception + handling process. It is the only valid way of leaving a finally block. + + + + + This instruction can be used from within a filter block to indicate whether the + exception will be handled. It pops an integer from the stack which should be 0 + to continue searching for an exception handler or 1 to use the handler + associated with the filter. EndFilter() must be called at the end of a filter block. + + + + + Triggers a breakpoint in an attached debugger. + + + + + Does nothing. + + + + + Converts the object to a string. + + A string containing the IL generated by this object. + + + + Represents a label in IL code. + + + + + Creates a new label instance. + + The underlying label. + + + + Gets the underlying label. + + + + + A copy of the stack at the point the flow branched. + + + + + Indicates whether the label has been marked. This must be done once and only once. + + + + + Used internally to allow branching out of a finally block. + + + + + Creates a new LongJumpException instance. + + The route ID. + + + + Gets the route ID. + + + + + Represents information useful for optimizing a method. + + + + + Called by the parser whenever a variable is encountered (variable being any identifier + which is not a property name). + + The variable name. + + + + Determines if the parser encountered the given variable name while parsing the + function, or if the function contains a reference to "eval" or the function contains + nested functions which may reference the variable. + + The variable name. + true if the parser encountered the given variable name or "eval" while + parsing the function; false otherwise. + + + + Gets a value that indicates whether the function being generated contains a reference + to the arguments object. + + + + + Gets a value that indicates whether the function being generated contains an eval + statement. + + + + + Caches the HasEval and HasArguments property access. + + + + + Gets or sets a value that indicates whether the function being generated contains a + nested function declaration or expression. + + + + + Gets or sets a value that indicates whether the function being generated contains a + reference to the "this" keyword. + + + + + Represents information about one or more code generation optimizations. + + + + + Creates a new OptimizationInfo instance. + + + + + Gets or sets the root of the abstract syntax tree that is being compiled. + + + + + Gets or sets a value that indicates whether strict mode is enabled. + + + + + Gets or sets the source of javascript code. + + + + + Gets or sets the name of the function that is being generated. + + + + + Gets the portion of source code associated with the statement that code is + being generated for. + + + + + Emits a sequence point, and sets the SourceSpan property. + + The IL generator used to emit the sequence point. + The source code span. + + + + Gets a list of generated methods that correspond to nested functions. + This list is maintained so that the garbage collector does not prematurely collect + the generated code for the nested functions. + + + + + Gets or sets function optimization information. + + + + + Gets a value that indicates whether the declarative scopes should be optimized away, + so that the scope is not even created at runtime. + + + + + Indicates that the given expression can choose to not generate a return value. + + + + + Indicates whether the return value was generated. + + + + + Gets or sets the local variable to store the result of the eval() call. Will be + null if code is being generated outside an eval context. + + + + + Retrieves a variable that can be used to store a property name referencing a + global variable. + + The IL generator used to create the variable. + The name of the global variable. + A variable. + + + + Retrieves a variable that can be used to store a property name referencing an + object property. + + The IL generator used to create the variable. + The name of the property. + A variable. + + + + Retrieves a variable that can be used to store a shared instance of a regular + expression. + + The IL generator used to create the variable. + The regular expression literal. + A varaible that can be used to store a shared instance of a regular + expression. + + + + Gets or sets the label the return statement should jump to (with the return value on + top of the stack). Will be null if code is being generated outside a function + context. + + + + + Gets or sets the variable that holds the return value for the function. Will be + null if code is being generated outside a function context or if no return + statements have been encountered. + + + + + Indicates whether we are generating code inside a loop. + + + + + Pushes information about break or continue targets to a stack. + + The label names associated with the break or continue target. + Can be null. + The IL label to jump to if a break statement is encountered. + The IL label to jump to if a continue statement is + encountered. Can be null. + true if break or continue statements without a label + should ignore this entry; false otherwise. + + + + Removes the top-most break or continue information from the stack. + + + + + Returns the break target for the statement with the given label, if one is provided, or + the top-most break target otherwise. + + The label associated with the break target. Can be + null. + The break target for the statement with the given label. + + + + Returns the continue target for the statement with the given label, if one is provided, or + the top-most continue target otherwise. + + The label associated with the continue target. Can be + null. + The continue target for the statement with the given label. + + + + Gets the number of available break or continue targets. Used to support break or + continue statements within finally blocks. + + + + + Searches for the given label in the break/continue stack. + + + The depth of the label in the stack. Zero indicates the bottom of the stack. + -1 is returned if the label was not found. + + + + Gets or sets a value that indicates whether code generation is occurring within a + try, catch or finally block. + + + + + Gets or sets a delegate that is called when EmitLongJump() is called and the target + label is outside the LongJumpStackSizeThreshold. + + + + + Gets or sets the depth of the break/continue stack at the start of the finally + statement. + + + + + Emits code to branch between statements, even if code generation is within a finally + block (where unconditional branches are not allowed). + + The generator to output the CIL to. + The label to jump to. + + + + Represents a javascript primitive type. + + + + + Methods related to the PrimitiveType enum. + + + + + Converts a javascript primitive type to a .NET type. + + The type to convert. + A .NET type. + + + + Converts a .NET type to a javascript primitive type. + + The type to convert. + A javascript primitive type. + + + + Checks if the given primitive type is numeric. + + The primitive type to check. + true if the given primitive type is numeric; false otherwise. + + + + Checks if the given primitive type is a string type. + + The primitive type to check. + true if the given primitive type is a string type; false + otherwise. + + + + Checks if the given primitive type is a value type. + + The primitive type to check. + true if the given primitive type is a value type; false otherwise. + + + + Gets a type that can hold values of both the given types. + + The first of the two types to find the LCD for. + The second of the two types to find the LCD for. + A type that can hold values of both the given types. + + + + Used by the code generator. + Not intended for user code (the class needs to be public because when using Reflection + Emit, all calls into Jurassic.dll are cross-assembly and thus must be public). + + + + + Initializes static members of this class. + + + + + Creates a new instance of a user-defined function. + + The next object in the prototype chain. + The name of the function. + The names of the arguments. + The scope at the point the function is declared. + The source code for the function body. + A delegate which represents the body of the function plus any dependencies. + true if the function body is strict mode; false otherwise. + A reference to the containing class prototype or object literal (or null). + This is used by functions declared in JavaScript code (including getters and setters). + + + + Sets the value of a object literal property to a value. + + The object to set the property on. + The property key (can be a string or a symbol). + The value to set. + + + + Sets the value of a object literal property to a getter. If the value already has a + setter then it will be retained. + + The object to set the property on. + The property key (can be a string or a symbol). + The getter function. + + + + Sets the value of a object literal property to a setter. If the value already has a + getter then it will be retained. + + The object to set the property on. + The property key (can be a string or a symbol). + The setter function. + + + + Retrieves a cached template string array, using the given call site ID as the cache key. + + The associated script engine. + The call site ID to use as a cache key. + + + + + Creates an array suitable for passing to a tag function. + + The associated script engine. + The call site ID to use as a cache key. + An array of strings that make up the template literal, + with escape character processing. + An array of strings that make up the template literal, + without any escape character processing. + A JS array suitable for passing to a tag function. + + + + + + + + + + + + + + Sets the value of a class property to a value. + + The object to set the property on. + The property key (can be a string or a symbol). + The value to set. + + + + Sets the value of a class property to a getter. If the value already has a + setter then it will be retained. + + The object to set the property on. + The property key (can be a string or a symbol). + The getter function. + + + + Sets the value of a class property to a setter. If the value already has a + getter then it will be retained. + + The object to set the property on. + The property key (can be a string or a symbol). + The setter function. + + + + Implements the 'instanceof' operator. + + The left-hand side value. + The right-hand side value. + The line number in the source file the error occurred on. + The path or URL of the source file. Can be null. + The name of the function. Can be null. + The result of the 'instanceof' operator. + + + + Gets an enumerable list of all the MemberInfos that are statically known to be used by this DLL. + + An enumerable list of all the MemberInfos that are used by this DLL. + + + + Gets the FieldInfo for a field. Throws an exception if the search fails. + + The type to search. + The name of the field. + The FieldInfo for a field. + + + + Gets the ConstructorInfo for a constructor. Throws an exception if the search fails. + + The type to search. + The types of the parameters accepted by the constructor. + The ConstructorInfo for the constructor. + + + + Gets the MethodInfo for an instance method. Throws an exception if the search fails. + + The type to search. + The name of the method to search for. + The types of the parameters accepted by the method. + The MethodInfo for the method. + + + + Gets the MethodInfo for a static method. Throws an exception if the search fails. + + The type to search. + The name of the method to search for. + The types of the parameters accepted by the method. + The MethodInfo for the method. + + + + Gets the MethodInfo for a generic instance method. Throws an exception if the search fails. + + The type to search. + The name of the method to search for. + The MethodInfo for the method. + + + + Represents the runtime state needed to run JS code. + + + + + Creates an execution context for code running in an eval() scope. + + A script engine. + The scope that was active when eval() was called. + The value of the 'this' keyword. + A new execution context instance. + + + + Creates an execution context for code running as a result of a function call. + + A script engine. + The scope that was active when the function was declared + (NOT when it was called). + The value of the 'this' keyword. + The function that is being called. + A new execution context instance. + + + + Creates an execution context for code running as a result of the new operator. + + A script engine. + The scope that was active when the class was declared. + The value of the 'this' keyword. + A reference to the function that is being executed. + The target of the new operator. + A reference to the object literal or class prototype + the executing function was defined within. Used by the 'super' keyword. + A new execution context instance. + + + + Creates an execution context for code running as a result of the new operator. The + 'this' value is unavailable. + + A script engine. + The scope that was active when the class was declared. + A reference to the function that is being executed. + The target of the new operator. + A reference to the object literal or class prototype + the executing function was defined within. Used by the 'super' keyword. + A new execution context instance. + + + + A reference to the script engine. + + + + + The scope that was active when this execution context was declared. Can be null. + + + + + Represents the state of the 'this' value. + + + + + A 'this' value is available, although it may be null or undefined. + + + + + 'this' is unavailable because execution is in a derived class constructor and + super() has not yet been called. + + + + + This is an ArrowFunction and does not have a local this value. + + + + + Indicates the status of the 'this' value. + + + + + The value of the 'this' keyword. + + + + + Converts to an object. If this is null or undefined, + then it will be set to the global object. + + + + + The value of the 'super' keyword, or null if it is not available. + + + + + Corresponds to a super(...argumentValues) call. + + The parameter values to pass to the base class. + The initialised object instance. + + + + A reference to the executing function. Will be null if running in a global or + eval context. + + + + + If this context was created by the 'new' operator, contains the target of the new + operator. This value can be accessed by JS using the 'new.target' expression. + + + + + Contains a reference to the object literal or class prototype the executing function + was defined within. Used by the 'super' keyword. + + + + + The same as except that it returns + instead of null if no new.target value is available. + + + + + Creates a new instance of the 'arguments' object. + + The top-level scope for the function. + The argument values that were passed to the function. + A new instance of the 'arguments' object. + + + + Creates a new RuntimeScope instance, which is used for passing captured variables + between methods. + + The parent scope, or null to use the ParentScope from this + execution context. + + + + + A new RuntimeScope instance. + + + + A place for storing captured variable values at runtime. + + So this JS code: + + function f() { + let a = 1; + { + let a = 2; + (function g() { + a = 3; + })(); + console.log(a); // Logs 3. + } + } + + Translates to something like this (in C#): + + object f(ExecutionContext executionContext, object[] arguments) + { + var scope1 = executionContext.CreateRuntimeScope(null); + var scope2 = executionContext.CreateRuntimeScope(scope1); + var g = ReflectionHelpers.CreateFunction(..., scope2, ...) + scope1.SetValue("a", 1); + scope2.SetValue("a", 2); + g.Call() + ((FunctionInstance)TypeConverter.ToObject(scope2.GetValue("console"))["log"]).Call(scope2.GetValue("a")); + } + + object g(ExecutionContext executionContext, object[] arguments) + { + executionContext.ParentScope.SetValue("a", 3); + } + + The with(...) statement is handled specially: + + function f() { + with (Math) { + console.log(E); // Logs 2.718281828459045. + } + } + + C# translation: + + object f(ExecutionContext executionContext, object[] arguments) + { + var scope1 = executionContext.CreateRuntimeScope(null); + var scope2 = executionContext.CreateRuntimeScope(scope1); + scope2.BindTo(scope1.GetValue("Math")); + ((FunctionInstance)TypeConverter.ToObject(scope2.GetValue("console"))["log"]).Call(scope2.GetValue("E")); + } + + + + + Creates a global scope. + + The associated script engine. + A new RuntimeScope instance. + + + + Creates a new RuntimeScope instance. + + The script engine this scope is associated with. + The parent scope, or null if this is the root scope. + + + + + + + + The current execution context. + + + + + A reference to the parent scope. If a variable cannot be found in this scope then the + parent scope can be checked instead. + + + + + Gets the type of scope, e.g. global, function, eval, with, etc. + + + + + Gets the object that stores the values of the variables in the scope, if any. Can be null. + + + + + Determines the 'this' value passed to a function when the function call is of the form + simple_func(). This is normally 'undefined' but can be some other value inside a with() + statement. + + + + + Binds the scope to a scope object. This is used by the 'with' statement. + + The object to use. + + + + Returns the value of the given variable. An error is thrown if the variable doesn't + exist. + + The name of the variable. + The line number in the source file the variable was accessed. + The path or URL of the source file. Can be null. + The value of the given variable. + + + + Returns the value of the given variable. Returns if the + variable doesn't exist. + + + The line number in the source file the variable was accessed. + The path or URL of the source file. Can be null. + The value of the given variable, or if the + variable doesn't exist. + + + + Returns the value of the given variable. Returns null if the variable doesn't + exist. + + The name of the variable. + The line number in the source file the variable was accessed. + The path or URL of the source file. Can be null. + The value of the given variable, or null if the variable doesn't exist + in the scope. + + + + Sets the value of the given variable. + + The name of the variable. + The new value of the variable. + The line number in the source file the variable was set. + The path or URL of the source file. Can be null. + + + + Sets the value of the given variable, using strict mode behaviour. + + The name of the variable. + The new value of the variable. + The line number in the source file the variable was set. + The path or URL of the source file. Can be null. + + + + Sets the value of the given variable. + + The name of the variable. + The new value of the variable. + Indicates whether to use strict mode behaviour when setting + the variable. + The line number in the source file the variable was set. + The path or URL of the source file. Can be null. + + + + Deletes the variable from the scope. + + The name of the variable. + + + + Represents an array literal expression. + + + + + Creates a new instance of ArrayLiteralExpression. + + A list of values in the array. + + + + Gets the literal value. + + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents an assignment expression (++, --, =, +=, -=, *=, /=, %=, &=, |=, ^=, <<=, >>=, >>>=). + + + + + Creates a new instance of AssignmentExpression. + + The operator to base this expression on. + + + + Creates a simple variable assignment expression. + + The scope the variable is defined within. + The name of the variable to set. + The value to set the variable to. + + + + Gets the target of the assignment. + + + + + Gets the underlying base operator for the given compound operator. + + The type of compound operator. + The underlying base operator, or null if the type is not a compound + operator. + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates CIL for an assignment expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + The target to modify. + + + + Generates CIL for an increment or decrement expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + The target to modify. + true if this is the postfix version of the operator; + false otherwise. + true if this is the increment operator; false if + this is the decrement operator. + + + + Generates CIL for a compound assignment expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + The target to modify. + + + + This is a private class that supports generating code for compound operators (e.g. +=). + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for a compound assignment expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + The target to modify. + + + + Checks the expression is valid and throws a SyntaxErrorException if not. + Called after the expression tree is fully built out. + + Indicates where the code is located e.g. inside a function, or a constructor, etc. + The line number to use when throwing an exception. + The source path to use when throwing an exception. + + + + Represents a binary operator expression. + + + + + Creates a new instance of BinaryExpression. + + The binary operator to base this expression on. + + + + Creates a new instance of BinaryJSExpression. + + The binary operator to base this expression on. + The operand on the left side of the operator. + The operand on the right side of the operator. + + + + Gets the expression on the left side of the operator. + + + + + Gets the expression on the right side of the operator. + + + + + Evaluates the expression, if possible. + + The result of evaluating the expression, or null if the expression can + not be evaluated. + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates CIL for the addition operation. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates CIL for the relational operators. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates CIL for the logical operators. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates CIL for the instanceof operator. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates CIL for the in operator. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Represents a class expression. + + + + + Creates a new class expression. + + The scope that contains the class. + The class name. + The base class, or null if this class doesn't inherit + from another class. + The constructor, or null if the class doesn't have one. + A list of class members. + + + + The scope that contains the class. + + + + + The class name, or null if none were specified. + + + + + The base class, or null if this class doesn't inherit from another class. + + + + + The constructor, or null if the class doesn't have one. + + + + + Gets the list of class members, exluding the constructor. + + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents the base class of all javascript expressions. + + + + + Evaluates the expression, if possible. + + The result of evaluating the expression, or null if the expression can + not be evaluated. + + + + Gets the type that results from evaluating this expression. + + + + + Checks the expression is valid and throws a SyntaxErrorException if not. + Called after the expression tree is fully built out. + + Indicates where the code is located e.g. inside a function, or a constructor, etc. + The line number to use when throwing an exception. + The source path to use when throwing an exception. + + + + Represents a function call expression. + + + + + Creates a new instance of FunctionCallExpression. + + The binary operator to base this expression on. + The scope that was in effect at the time of the function call + (used by eval() calls). + + + + Gets an expression that evaluates to the function instance. + + + + + Gets the type that results from evaluating this expression. + + + + + The scope that was in effect at the time of the function call (used by eval() calls.) + + + + + Used to implement function calls without evaluating the left operand twice. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates an array containing the argument values. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates an array containing the argument values for a tagged template literal. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + The template literal expression containing the parameter + values. + + + + Generates CIL for a call to eval(). + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Checks the expression is valid and throws a SyntaxErrorException if not. + Called after the expression tree is fully built out. + + Indicates where the code is located e.g. inside a function, or a constructor, etc. + The line number to use when throwing an exception. + The source path to use when throwing an exception. + + + + Represents a function expression. + + + + + Creates a new instance of FunctionExpression. + + The function context to base this expression on. + The scope that was in effect where the function was declared. + + + + Indicates how the function was declared. + + + + + Gets the name of the function. Can be null. + + + + + Gets a list of argument names and default values. + + + + + Gets the source code for the body of the function. + + + + + Gets the type that results from evaluating this expression. + + + + + The scope that was in effect where the function was declared. + + + + + A variable that contains the declaring object. + 1. In an object literal, the object literal instance. + 2. In a class instance method, the class prototype. + 3. In a class static method, the class itself. + Used when generating code. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents a grouping expression. + + + + + Creates a new instance of GroupingJSExpression. + + The operator to base this expression on. + + + + Gets the expression inside the grouping operator. + + + + + Evaluates the expression, if possible. + + The result of evaluating the expression, or null if the expression can + not be evaluated. + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Represents a reference - an expression that is valid on the left-hand-side of an assignment + operation. + + + + + Gets the static type of the reference. + + + + + Outputs the values needed to get or set this reference. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Duplicates the values needed to get or set this reference. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Pushes the value of the reference onto the stack. GenerateReference should be called first. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + true to throw a ReferenceError exception if + the name is unresolvable; false to output null instead. + + + + Stores the value on the top of the stack in the reference. GenerateReference should be called first. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + The primitive type of the value that is on the top of the stack. + + + + Deletes the reference and pushes true if the delete succeeded, or false + if the delete failed. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Represents a comma-delimited list. + + + + + Creates a new instance of ListExpression. + + The operator to base this expression on. + + + + Gets an array of expressions, one for each item in the list. + + + + + Evaluates the expression, if possible. + + The result of evaluating the expression, or null if the expression can + not be evaluated. + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents a simple literal expression (not an array literal or object literal). + + + + + Creates a new instance of LiteralExpression. + + The literal value. + + + + Gets the literal value. + + + + + Evaluates the expression, if possible. + + The result of evaluating the expression, or null if the expression can + not be evaluated. + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents a variable or member access. + + + + + Creates a new instance of MemberAccessExpression. + + The operator to base this expression on. + + + + Gets an expression that evaluates to the object that is being accessed or modified. + + + + + Gets the type that results from evaluating this expression. + + + + + Gets the static type of the reference. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Static property access e.g. a.b or a['b'] + + + + + Numeric array indexer e.g. a[1] + + + + + Dynamic property access e.g. a[someVariable] + + + + + Determines the type of member access. + + Information about any optimizations that should be performed. + Outputs the name of the property that is being accessed, if + it is available at compile time, or null otherwise. + + + + + Outputs the values needed to get or set this reference. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Outputs the values needed to get or set this reference. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Pushes the value of the reference onto the stack. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + true to throw a ReferenceError exception if + the name is unresolvable; false to output null instead. + + + + Stores the value on the top of the stack in the reference. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + The primitive type of the value that is on the top of the stack. + + + + Deletes the reference and pushes true if the delete succeeded, or false + if the delete failed. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Checks the expression is valid and throws a SyntaxErrorException if not. + Called after the expression tree is fully built out. + + Indicates where the code is located e.g. inside a function, or a constructor, etc. + The line number to use when throwing an exception. + The source path to use when throwing an exception. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents a variable or part of a member reference. + + + + + Creates a new NameExpression instance. + + The current scope. + The name of the variable or member that is being referenced. + + + + Gets or sets the scope the name is contained within. + + + + + Gets the name of the variable or member. + + + + + Gets the type that results from evaluating this expression. + + + + + Gets the static type of the reference. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Outputs the values needed to get or set this reference. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Outputs the values needed to get or set this reference. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Pushes the value of the reference onto the stack. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + true to throw a ReferenceError exception if + the name is unresolvable; false to output null instead. + + + + Stores the value on the top of the stack in the reference. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + The primitive type of the value that is on the top of the stack. + + + + Deletes the reference and pushes true if the delete succeeded, or false + if the delete failed. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Calculates the hash code for this object. + + The hash code for this object. + + + + Determines if the given object is equal to this one. + + The object to compare. + true if the given object is equal to this one; false otherwise. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents a "new" expression. + + + + + Creates a new instance of NewExpression. + + The operator to base this expression on. + + + + Gets the precedence of the operator. + + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Represents a reference to the "new.target" value. + + + + + Creates a new NewTargetExpression instance. + + + + + Gets the type that results from evaluating this expression. + + + + + Gets the static type of the reference. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents an object literal expression. + + + + + Creates a new object literal expression. + + A list of property declarations. + + + + Gets the literal value. + + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents a mutable operator expression. Once all the operands are determined, the + expression is converted into a real operator expression. + + + + + Creates a new instance of OperatorExpression. + + The operator to base this expression on. + + + + Creates a derived instance of OperatorExpression from the given operator. + + The operator to base this expression on. + The scope that was in effect at the time of the function call + (used by eval() calls). + A derived OperatorExpression instance. + + + + Gets or sets the operator this expression refers to. + + + + + Gets or sets the type of operator this expression refers to. + + + + + Gets the operand with the given index. No parameter validation and grouping operator + elimination is performed. + + The index of the operand to retrieve. + The operand with the given index. + + + + Gets the operand with the given index. + + The index of the operand to retrieve. + The operand with the given index. + + + + Gets the number of operands that have been added. + + + + + Adds an operand. + + The expression representing the operand to add. + + + + Removes and returns the most recently added operand. + + The most recently added operand. + + + + Gets or sets a value that indicates whether the second token in a ternary operator + was encountered. + + + + + Gets a value that indicates whether a new operand is acceptable given the state of + this operator. For ternary operators only two operands are acceptable until the + second token of the sequence is encountered. + + + + + Gets the right-most operand as an unbound operator, or null if the operator + has no operands or the right-most operand is not an operator. + + + + + Gets the precedence of the operator. For ternary operators this is -MinValue if + parsing is currently between the two tokens. + + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Checks the expression is valid and throws a SyntaxErrorException if not. + Called after the expression tree is fully built out. + + Indicates where the code is located e.g. inside a function, or a constructor, etc. + The line number to use when throwing an exception. + The source path to use when throwing an exception. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents a 'super' reference. + + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Indicates whether this 'super' keyword is in a valid context. + + + + + Checks the expression is valid and throws a SyntaxErrorException if not. + Called after the expression tree is fully built out. + + Indicates where the code is located e.g. inside a function, or a constructor, etc. + The line number to use when throwing an exception. + The source path to use when throwing an exception. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents a template literal expression, with substitutions. + Code gen treats template literals with no substitutions just like string literals. + + + + + Creates a new instance of TemplateLiteralExpression. + + The literal string parts of the template. For example `1${2}3` + has the string literal parts "1" and "3". + The substitution expressions in the template. For example + `1${2}3` has the substitution expression "2". + The literal string parts of the template, prior to performing + escape sequence processing. + + + + The literal string parts of the template. For example `1${2}3` has the string literal + parts "1" and "3". + + + + + The substitution expressions in the template. For example `1${2}3` has the + substitution expression "2". + + + + + The literal string parts of the template, prior to performing escape sequence + processing. + + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Represents a ternary operator expression. + + + + + Creates a new instance of TernaryExpression. + + The ternary operator to base this expression on. + + + + Evaluates the expression, if possible. + + The result of evaluating the expression, or null if the expression can + not be evaluated. + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Represents a reference to the "this" value. + + + + + Creates a new ThisExpression instance. + + + + + Gets the type that results from evaluating this expression. + + + + + Gets the static type of the reference. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents a unary operator expression. + + + + + Creates a new instance of UnaryExpression. + + The unary operator to base this expression on. + + + + Gets the expression on the left or right side of the unary operator. + + + + + Evaluates the expression, if possible. + + The result of evaluating the expression, or null if the expression can + not be evaluated. + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates CIL for the typeof expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates CIL for the delete expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Represents punctuation or an operator in the source code. + + + + + Creates a new IdentifierToken instance. + + The identifier name. + + + + Gets the name of the identifier. + + + + + Gets a string that represents the token in a parseable form. + + + + + Creates a new identifier token. + + The name of the identifer. + A new IdentifierToken instance. + + + + Represents a reserved word in the source code. + + + + + Creates a new KeywordToken instance. + + The keyword name. + + + + Gets the name of the identifier. + + + + + Creates a token from the given string. + + The text. + The script engine compatibility mode. + true if the lexer is operating in strict mode; + false otherwise. + The token corresponding to the given string, or null if the string + does not represent a valid token. + + + + Initializes a lookup table by combining the base list with a second list of keywords. + + A list of additional keywords. + A lookup table. + + + + Gets a string that represents the token in a parseable form. + + + + + Represents the current expression state of the parser. + + + + + Indicates the context is not known. The lexer will guess. + + + + + Indicates the next token can be a literal. + + + + + Indicates the next token can be an operator. + + + + + Indicates the next token is the continuation of a template literal. + + + + + Converts a JavaScript source file into a series of tokens. + + + + + Creates a Lexer instance with the given source of text. + + The source of javascript code. + + + + Cleans up any resources used by the lexer. + + + + + Gets the reader that was supplied to the constructor. + + + + + Gets the line number of the next token. + + + + + Gets the column number of the start of the next token. + + + + + Gets or sets a callback that interrogates the parser to determine whether a literal or + an operator is valid as the next token. This is only required to disambiguate the + slash symbol (/) which can be a division operator or a regular expression literal. + + + + + Gets or sets a value that indicates whether the lexer should operate in strict mode. + + + + + Gets or sets a value that indicates what compatibility mode to use. + + + + + Gets or sets a string builder that will be appended with characters as they are read + from the input stream. + + + + + Reads the next character from the input stream. + + The character that was read, or -1 if the end of the input stream has + been reached. + + + + Reads the next token from the reader. + + A token, or null if there are no more tokens. + + + + Reads an identifier token. + + The first character of the identifier. + An identifier token, literal token or a keyword token. + + + + Reads a punctuation token. + + The first character of the punctuation token. + A punctuation token. + + + + Creates a TextReader that calls ReadNextChar(). + + + + + Reads a numeric literal token. + + The first character of the token. + A numeric literal token. + + + + Reads an integer value. + + The initial value, derived from the first character. + The number of digits that were read from the stream. + The numeric value, or double.NaN if no number was present. + + + + Reads a string literal. + + The first character of the string literal. + A string literal. + + + + Reads a hexidecimal number with the given number of digits and turns it into a character. + + The character corresponding to the escape sequence, or the content that was read + from the input if a valid hex number was not read. + + + + Reads an octal number turns it into a single-byte character. + + The first character delimiting the string literal. + The value of the first digit. + The character corresponding to the escape sequence. + + + + Reads an extended unicode escape sequence in the form "\u{20BB7}". + + The character or characters corresponding to the escape sequence. + + + + Reads past a single line comment. + + Always returns null. + + + + Reads past a multi-line comment. + + A line terminator token if the multi-line comment contains a newline character; + otherwise returns null. + + + + Reads past whitespace. + + Always returns null. + + + + Reads a line terminator (a newline). + + The first character of the line terminator. + A newline token. + + + + Reads a divide operator ('/' or '/='), a comment ('//' or '/*'), or a regular expression + literal. + + A punctuator token or a regular expression token. + + + + Reads a regular expression literal. + + A regular expression token. + + + + Determines if the given character is whitespace. + + The character to test. + true if the character is whitespace; false otherwise. + + + + Determines if the given character is a line terminator. + + The character to test. + true if the character is a line terminator; false otherwise. + + + + Determines if the given character is valid as the first character of an identifier. + + The character to test. + true if the character is is valid as the first character of an identifier; + false otherwise. + + + + Determines if the given character is valid as a character of an identifier. + + The character to test. + true if the character is is valid as a character of an identifier; + false otherwise. + + + + Determines if the given character is valid as the first character of a punctuator. + + The character to test. + true if the character is is valid as the first character of an punctuator; + false otherwise. + + + + Determines if the given character is valid as the first character of a numeric literal. + + The character to test. + true if the character is is valid as the first character of a numeric + literal; false otherwise. + + + + Determines if the given character is valid as the first character of a string literal. + + The character to test. + true if the character is is valid as the first character of a string + literal; false otherwise. + + + + Determines if the given character is valid in a hexidecimal number. + + The character to test. + true if the given character is valid in a hexidecimal number; false + otherwise. + + + + Represents a string, number, boolean or null literal in the source code. + + + + + Creates a new LiteralToken instance with the given value. + + + + + + The value of the literal. + + + + + Gets a value that indicates whether the literal is a keyword. Literal keywords are + false, true and null. + + + + + Gets a string that represents the token in a parseable form. + + + + + Converts this token into a property name. + + + + + + Represents punctuation or an operator in the source code. + + + + + Creates a new PunctuatorToken instance. + + The punctuator text. + + + + Creates a punctuator token from the given string. + + The punctuator text. + The punctuator corresponding to the given string, or null if the string + does not represent a valid punctuator. + + + + Gets a string that represents the token in a parseable form. + + + + + Represents a lightweight representation of a regular expression literal. + + + + + Creates a new regular expression literal. + + The unescaped regular expression pattern. + The regular expression flags. + + + + Gets the regular expression pattern. + + + + + Gets a string that contains the flags. + + + + + Determines whether the specified Object is equal to the current Object. + + The Object to compare with the current Object. + true if the specified Object is equal to the current Object; + otherwise, false. + + + + Serves as a hash function for a particular type. + + A hash code for the current Object. + + + + Returns a String that represents the current Object. + + A String that represents the current Object. + + + + Represents a string literal. + + + + + Gets the number of character escape sequences encounted while parsing the string + literal. + + + + + Gets the number of line continuations encounted while parsing the string literal. + + + + + Gets the contents of the string literal. + + + + + Represents the text content of a template literal. + + Example 1: `plain text` + 1. TemplateLiteralToken (Value = "plain text") + + Example 2: `${count}` + 1. TemplateLiteralToken (Value = "") + 2. IdentifierToken (Name = "count") + 3. PunctuatorToken (Text = "}") + 4. TemplateLiteralToken (Value = "") + + Example 3: `Bought ${count} items from ${person}!` + 1. TemplateLiteralToken (Value = "Bought ") + 2. IdentifierToken (Name = "count") + 3. PunctuatorToken (Text = "}") + 4. TemplateLiteralToken (Value = " items from ") + 5. IdentifierToken (Name = "person") + 6. PunctuatorToken (Text = "}") + 7. TemplateLiteralToken (Value = "!") + + + + + Creates a new TemplateLiteralToken instance. + + The literal text. + The contents of the template literal, without any escaping. + Indicates whether a substitution follows this + string. + + + + Indicates whether a substitution follows this string. For example, this is true for + the "hello" in `hello${1}world`, but not the "world". + + + + + The raw text, prior to performing any escape sequence processing. + + + + + Gets the contents of the template string literal. + + + + + Represents the base class of all tokens. + + + + + Gets a string that represents the token in a parseable form. + + + + + Converts the token to the string suitable for embedding in an error message. + + The token to convert. Can be null. + A string suitable for embedding in an error message. + + + + Converts the token to a string representation. + + A textual representation of the object. + + + + Represents whitespace or a line terminator. + + + + + Creates a new WhiteSpaceToken instance. + + The number of line terminators encountered while + reading the whitespace. + + + + Gets a count of the number of line terminators. + + + + + Gets a string that represents the token in a parseable form. + + + + + Represents a context that code can be run in. + + + + + The default context. + + + + + The context inside function bodies. + + + + + The context inside the eval() function. + + + + + Represents a set of options that influence the compiler. + + + + + Creates a new CompilerOptions instance. + + + + + Gets or sets a value that indicates whether to force ES5 strict mode, even if the code + does not contain a strict mode directive ("use strict"). The default is false. + + + + + Gets or sets a value that indicates what compatibility mode to use. + + + + + Gets or sets a value that indicates whether to disassemble any generated IL and store it + in the associated function. + + + + + Performs a shallow clone of this instance. + + A shallow clone of this instance. + + + + Represents how the function was defined. + + + + + The function was declared as a statement. + + + + + The function was declared as an expression. + + + + + Represents the declaration of a function parameter. + + + + + The name of the parameter. + + + + + The value of the parameter, if no value was passed to the function (can be null). + + + + + Returns the textual representation of this object. + + + + + + Represents the information needed to compile a function. + + + + + Creates a new FunctionMethodGenerator instance. + + The name of the function (can be computed at runtime). + Indicates how the function was declared. + The names and default values of the arguments. + The source code of the function. + The root of the abstract syntax tree for the body of the function. + The scope that contains the function name and arguments. + The URL or file system path that the script was sourced from. + The extent of the function in the source code. + Options that influence the compiler. + + + + Dummy implementation of ScriptSource. + + + + + Creates a new FunctionContext instance. + + The name of the function. + A comma-separated list of arguments. + The source code for the body of the function. + Options that influence the compiler. + + + + An expression that evaluates to the name of the function. For getters and setters, + this does not include the "get" or "set". + + + + + Indicates how the function was declared. + + + + + Gets a comma-separated list of arguments. + + + + + Gets a list of argument names and default values. + + + + + Gets the root of the abstract syntax tree for the body of the function. + + + + + Gets the source code for the body of the function. + + + + + Gets a name for the generated method. + + A name for the generated method. + + + + Gets a name for the function, as it appears in the stack trace. + + A name for the function, as it appears in the stack trace, or null if + this generator is generating code in the global scope. + + + + Gets an array of types - one for each parameter accepted by the method generated by + this context. + + An array of parameter types. + + + + Gets an array of names - one for each parameter accepted by the method being generated. + + An array of parameter names. + + + + Checks whether the function is valid (in strict mode the function cannot be named + 'arguments' or 'eval' and the argument names cannot be duplicated). + + The line number in the source file. + The path or URL of the source file. Can be null. + + + + Parses the source text into an abstract syntax tree. + + The root node of the abstract syntax tree. + + + + Represents a delegate that is used for user-defined functions. For internal use only. + + The script engine, this value and other state needed to run the + function. + The arguments that were passed to the function. + The result of calling the method. + + + + Retrieves a delegate for the generated method. + + The delegate type that matches the method parameters. + + + + Generates IL for the script. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts this object to a string. + + A string representing this object. + + + + Represents a generated method and it's dependencies. + + + + + Creates a new GeneratedMethod instance. + + A delegate that refers to the generated method. + A list of dependent generated methods. Can be null. + + + + Gets a delegate which refers to the generated method. + + + + + Gets a list of dependent generated methods. + + + + + Gets or sets the disassembled IL code for the method. + + + + + Retrieves the code for a generated method, given the ID. For internal use only. + + The ID of the generated method. + A GeneratedMethodInfo instance. + + + + Saves the given generated method and returns an ID. For internal use only. + + The generated method to save. + The ID that was associated with the generated method. + + + + Represents the information needed to compile global or eval script into a method. + + + + + Creates a new EvalMethodGenerator instance. + + The script code to execute. + Options that influence the compiler. + + + + + + + + + + Gets a name for the generated method. + + A name for the generated method. + + + + Represents a delegate that is used for global code. For internal use only. + + The script engine, scope and 'this' value. + The result of calling the method. + + + + Retrieves a delegate for the generated method. + + The delegate type that matches the method parameters. + + + + Parses the source text into an abstract syntax tree. + + + + + Generates IL for the script. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Executes the script. + + The script engine to use to execute the script. + The scope of the calling code. + The value of the "this" keyword in the calling code. + The result of evaluating the script. + + + + Represents the unit of compilation. + + + + + Creates a new MethodGenerator instance. + + The source of javascript code. + Options that influence the compiler. + + + + Gets a reference to any compiler options. + + + + + Gets the source of javascript code. + + + + + Gets a value that indicates whether strict mode is enabled. + + + + + Gets the root node of the abstract syntax tree. This will be null until Parse() + is called. + + + + + Gets the top-level scope. This will be null until Parse() is called. + + + + + Gets or sets optimization information. + + + + + Gets the generated IL. This will be null until GenerateCode() is + called. + + + + + Gets a delegate to the emitted dynamic method, plus any dependencies. This will be + null until GenerateCode() is called. + + + + + Gets a name for the generated method. + + A name for the generated method. + + + + Gets a name for the function, as it appears in the stack trace. + + A name for the function, as it appears in the stack trace, or null if + this generator is generating code in the global scope. + + + + Gets an array of types - one for each parameter accepted by the method generated by + this context. + + An array of parameter types. + + + + Gets an array of names - one for each parameter accepted by the method being generated. + + An array of parameter names. + + + + Retrieves a delegate for the generated method. + + The delegate type that matches the method parameters. + + + + Parses the source text into an abstract syntax tree. + + + + + Optimizes the abstract syntax tree. + + + + + Generates IL for the script. + + + + + Generates IL for the script. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Represents the base class of expressions and statements. + + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Determines if this node or any of this node's children are of the given type. + + The type of AstNode to search for. + true if this node or any of this node's children are of the given + type; false otherwise. + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Indicates that multiple operators of this type are grouped left-to-right. + + + + + Indicates that multiple operators of this type are grouped right-to-left. + + + + + Indicates that a value is consumed to the left of the primary token. + + + + + Indicates that a value is consumed to the right of the primary token. + + + + + Indicates that values to the left and right of the primary token are consumed. + + + + + Indicates that a value is consumed to the right of the secondary token. + + + + + Indicates that three values are consumed. + + + + + Indicates the inner operand is optional. Only used with the function call operator. + + + + + Represents the type of operator. + + + + + Represents a JavaScript operator. + + + + + Creates a new operator instance. + + The token that corresponds to this operator. If the operator consists + of multiple tokens (e.g. ?:) then this is the first token in the sequence. + An integer that indicates the order of evaluation. Higher + precedence operators are evaluated first. + A value that indicates where operands are allowed. + Gets a value that indicates whether multiple operators of this + type are grouped left-to-right or right-to-left. + The type of operator: this decides what algorithm to use to calculate the result. + The second token in the sequence. + The precedence for the secondary or tertiary operand. + + + + Gets the type of operator: this decides what algorithm to use to calculate the result. + + + + + Gets the token that corresponds to this operator. If the operator consists of multiple + tokens (e.g. ?:) then this is the first token in the sequence. + + + + + For a multi-token operator, gets the second token in the sequence. + + + + + Gets an integer that indicates the order of evaluation. Higher precedence operators are + evaluated first. + + + + + Gets an integer that indicates the order of evaluation for the secondary operand. + Higher precedence operators are evaluated first. + + + + + Gets an integer that indicates the order of evaluation for the tertiary operand. + Higher precedence operators are evaluated first. + + + + + Gets a value that indicates whether multiple operators of this type are grouped + left-to-right or right-to-left. + + + + + Gets a value that indicates whether a value is consumed to the left of the primary token. + + + + + Gets a value that indicates whether a value is consumed to the right of the primary token. + + + + + Gets a value that indicates whether a value is consumed to the right of the secondary token. + Must be false if there is no secondary token. + + + + + Gets a value that indicates the inner operand is optional. Only used with the function + call operator. + + + + + Gets the maximum number of operands required by this operator. + + + + + Determines if the given number of operands is valid for this operator. + + The number of operands. + true if the given number of operands is valid for this operator; + false otherwise. + + + + Gets an enumerable collection of every defined operator. + + + + + Converts a series of tokens into an abstract syntax tree. + + + + + Creates a Parser instance with the given lexer supplying the tokens. + + The lexical analyser that provides the tokens. + Options that influence the compiler. + The context of the code (global, function or eval). + Hints about whether optimization is possible. + + + + Creates a parser that can read the body of a function. + + The parser for the parent context. + The function scope. + Hints about whether optimization is possible. + Indicates the parsing context. + A new parser. + + + + Gets the line number of the next token. + + + + + Gets the position just after the last character of the previously consumed token. + + + + + Gets the position of the first character of the next token. + + + + + Gets the path or URL of the source file. Can be null. + + + + + Gets or sets a value that indicates whether the parser is operating in strict mode. + + + + + The top-level scope. + + + + + Gets optimization information about the code that was parsed (Parse() must be called + first). + + + + + Indicates whether we are parsing in a function context (including constructors and class functions). + + + + + Throws an exception if the variable name is invalid. + + The name of the variable to check. + + + + Discards the current token and reads the next one. + + Indicates whether the next token can be a literal or an + operator. + + + + Indicates that the next token is identical to the given one. Throws an exception if + this is not the case. Consumes the token. + + The expected token. + + + + Indicates that the next token should be an identifier. Throws an exception if this is + not the case. Consumes the token. + + The identifier name. + + + + Returns a value that indicates whether the current position is a valid position to end + a statement. + + true if the current position is a valid position to end a statement; + false otherwise. + + + + Indicates that the next token should end the current statement. This implies that the + next token is a semicolon, right brace or a line terminator. + + + + + Sets the initial scope. + + The initial scope + + + + Helper class to help manage scopes. + + + + + Sets the current scope and returns an object which can be disposed to restore the + previous scope. + + The new scope. + An object which can be disposed to restore the previous scope. + + + + Parses javascript source code. + + An expression that can be executed to run the program represented by the + source code. + + + + Parses any statement other than a function declaration. + + true if the statement is being added to an + existing block statement, false if the statement represents a new block. + An expression that represents the statement. + + + + Parses any statement other than a function declaration, without beginning a new + statement context. + + An expression that represents the statement. + + + + Parses a block of statements. + + A BlockStatement containing the statements. + The value of a block statement is the value of the last statement in the block, + or undefined if there are no statements in the block. + + + + Parses a var, let or const statement. + + Indicates which type of statement is being parsed. Must be var, + let or const. + Indicates whether the keyword token needs to be consumed. + Indicates whether we are parsing the initial declaration + inside a for() statement. + A variable declaration statement. + + + + Parses an empty statement. + + An empty statement. + + + + Parses an if statement. + + An expression representing the if statement. + + + + Parses a do statement. + + An expression representing the do statement. + + + + Parses a while statement. + + A while statement. + + + + When parsing a for statement, used to keep track of what type it is. + + + + + Parses a for statement, for-in statement, or a for-of statement. + + A for statement, for-in statement, or a for-of statement. + + + + Parses a continue statement. + + A continue statement. + + + + Parses a break statement. + + A break statement. + + + + Parses a return statement. + + A return statement. + + + + Parses a with statement. + + An expression representing the with statement. + + + + Parses a switch statement. + + A switch statement. + + + + Parses a throw statement. + + A throw statement. + + + + Parses a try statement. + + A try-catch-finally statement. + + + + Parses a debugger statement. + + A debugger statement. + + + + Parses a function declaration. + + A statement representing the function. + + + + Parses a function declaration or a function expression. + + The type of function to parse. + The parent scope for the function. + The name of the function (can be computed at runtime). + The position of the start of the function. + Indicates the parsing context. + A function expression. + + + + Parses a comma-separated list of function arguments. + + The token that ends parsing. + A list of parsed arguments. + + + + Parses a statement consisting of an expression or starting with a label. These two + cases are disambiguated here. + + A statement. + + + + Represents a key by which to look up an operator. + + + + + Gets or sets a mapping from token -> operator. There can be at most two operators per + token (the prefix version and the infix/postfix version). + + + + + Initializes the token -> operator mapping dictionary. + + The token -> operator mapping dictionary. + + + + Finds a operator given a token and an indication whether the prefix or infix/postfix + version is desired. + + The token to search for. + true if the infix/postfix version of the operator + is desired; false otherwise. + An Operator instance, or null if the operator could not be found. + + + + Parses a javascript expression. + + One or more tokens that indicate the end of the expression. + An expression tree that represents the expression. + + + + Parses an array literal (e.g. "[1, 2]"). + + A literal expression that represents the array literal. + + + + Parses an object literal (e.g. "{a: 5}"). + + A literal expression that represents the object literal. + + + + Reads a property name, as used in object literals and class bodies. + + + Details on the property name. + + + + Parses a function expression. + + A function expression. + + + + Parses a template literal (e.g. `Bought ${count} items`). + + An expression that represents the template literal. + + + + Parses a class declaration. + + A statement representing the class. + + + + Parses a class expression. + + A class expression. + + + + Parses the body of a class declaration or a class expression. + + The name of the class (can be empty). + The base class, or null if this class doesn't inherit + from another class. + The position of the start of the function. + A class expression. + + + + Represents a single property of an object literal or a member of a class body. + + + + + Creates a new PropertyDeclaration instance. + + The property name. + The property value. + + + + The member name. Can be static or computed e.g. ['fu' + 'nc']() { }. + + + + + The value of the member. + + + + + Represents the valid prefixes that can appear before a property name. + + + + + Represents the name of a property (member), which can be + + + + + Creates a property name instance with a statically-known name. + + The statically-known name. + + + + Creates a property name instance with a name that will be computed at runtime. + + The expression that will compute the name. + + + + Indicates the property was preceeded by 'get', making this property a getter. + + + + + Indicates the property was preceeded by 'set', making this property a setter. + + + + + Indicates the property was preceeded by 'static', making this a static function + (applies to classes, not object literals). + + + + + Indicates whether the name is statically known. + + + + + If HasStaticName is true, contains the name of the property. + + + + + If HasStaticName is false, contains an expression which computes the name of the + property. + + + + + Modifies this name to include the given flags. + + The flags to add. + A new property name instance with the existing flags and the provided flags. + + + + Represents an enclosing context where variables are uniquely defined. + + + + + Represents a variable declared in a scope. + + + + + + + + + + + + Creates a new declarative scope for use inside a function body (and within function + argument default values). + + The name of the function. Can be empty for an anonymous function. + The names of each of the function arguments. Can be null. + A new DeclarativeScope instance. + + + + + + + + + + + Creates a new object scope for use inside a with statement. + + A reference to the parent scope. Can not be null. + A new ObjectScope instance. + + + + Creates a new Scope instance. + + A reference to the parent scope, or null if this is + the global scope. + The number of variables declared in this scope. + + + + + + + + + Gets a reference to the parent scope. Can be null if this is the global scope. + + + + + Gets the number of variables declared in this scope. + + + + + After GenerateScopeCreation is called, gets a variable containing the RuntimeScope + instance. Can be null if this scope contains no variables. + + + + + Indicates whether + was called. + + + + + Gets an enumerable list of the declared variables, in no particular order. + + + + + Gets a reference to the variable with the given name, in this scope or any parent + scope. + + The name of the variable to find. + The variable details, or null if the variable doesn't exist in the + scope. + + + + Returns true if the given variable has been declared in this scope. + + The name of the variable. + true if the given variable has been declared in this scope; + false otherwise. + + + + Declares a variable or function in this scope. This will be initialized with the value + of the given expression. + + The keyword that was used to declare the variable (var, let or + const). + The name of the variable. + The function value to hoist to the top of the scope. + Should be null for everything except function declarations. + A reference to the variable that was declared. + + + + Generates code that creates a new scope. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates code that pushes a RuntimeScope instance to the top of the stack. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates code that initializes the variable and function declarations. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Represents different types of scopes. + + + + + The top-level global scope. + + + + + A scope associated with a 'with' statement. + + + + + The top-level scope in a function. + + + + + + + + + + The scope for a non-strict mode eval() function call. + + + + + The scope for a strict mode eval() function call. + + + + + Represents a javascript block statement. + + + + + Creates a new BlockStatement instance. + + The labels that are associated with this statement. + The lexical scope associated with this block statement. + + + + Gets a list of the statements in the block. + + + + + The lexical scope associated with this block statement. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a break statement. + + + + + Creates a new BreakStatement instance. + + The labels that are associated with this statement. + + + + Gets or sets the name of the label that identifies the block to break out of. Can be + null. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a continue statement. + + + + + Creates a new ContinueStatement instance. + + The labels that are associated with this statement. + + + + Gets or sets the name of the label that identifies the loop to continue. Can be + null. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents the debugger statement. + + + + + Creates a new DebuggerStatement instance. + + The labels that are associated with this statement. + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a javascript do-while statement. + + + + + Creates a new DoWhileStatement instance. + + The labels that are associated with this statement. + + + + Gets a value that indicates whether the condition should be checked at the end of the + loop. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents an empty statement. + + + + + Creates a new EmptyStatement instance. + + The labels that are associated with this statement. + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a javascript expression statement. + + + + + Creates a new ExpressionStatement instance. By default, this expression does not + contribute to the result of an eval(). + + The underlying expression. + + + + Creates a new ExpressionStatement instance. By default, this expression does + contribute to the result of an eval(). + + The labels that are associated with this statement. + The underlying expression. + + + + Gets or sets the underlying expression. + + + + + Gets or sets a value that indicates whether the result of this statement should be + returned from an eval() call. Does not have any effect if the context is not an + EvalContext. Defaults to false. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a javascript for-in statement. + + + + + Creates a new ForInStatement instance. + + The labels that are associated with this statement. + + + + The scope that encompasses the entire loop statement. + + + + + Gets or sets a reference to mutate on each iteration of the loop. + + + + + Gets or sets the portion of source code associated with the variable. + + + + + Gets or sets an expression that evaluates to the object to enumerate. + + + + + Gets or sets the portion of source code associated with the target object. + + + + + Gets or sets the loop body. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a javascript for-of statement. + + + + + Creates a new ForOfStatement instance. + + The labels that are associated with this statement. + + + + The scope that encompasses the entire loop statement. + + + + + Gets or sets a reference to mutate on each iteration of the loop. + + + + + Gets or sets the portion of source code associated with the variable. + + + + + Gets or sets an expression that evaluates to the object to enumerate. + + + + + Gets or sets the portion of source code associated with the target object. + + + + + Gets or sets the loop body. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a javascript for statement (for-in is a separate statement). + + + + + Creates a new ForStatement instance. + + The labels that are associated with this statement. + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents an if statement. + + + + + Creates a new IfStatement instance. + + The labels that are associated with this statement. + + + + Gets or sets the condition that determines which path the code should proceed. + + + + + Gets or sets the statement that is executed if the condition is true. + + + + + Gets or sets the statement that is executed if the condition is false. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a javascript loop statement (for, for-in, while and do-while). + + + + + Creates a new LoopStatement instance. + + The labels that are associated with this statement. + + + + The scope that encompasses the entire loop statement. Only needed if there is a + declaration statement in the loop header, which means it only applies to for + statements. + + + + + Gets or sets the statement that initializes the loop variable. + + + + + Gets the var statement that initializes the loop variable. + + + + + Gets the expression that initializes the loop variable. + + + + + Gets or sets the statement that checks whether the loop should terminate. + + + + + Gets the expression that checks whether the loop should terminate. + + + + + Gets or sets the statement that increments (or decrements) the loop variable. + + + + + Gets the expression that increments (or decrements) the loop variable. + + + + + Gets or sets the loop body. + + + + + Gets a value that indicates whether the condition should be checked at the end of the + loop. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Represents a return statement. + + + + + Creates a new ReturnStatement instance. + + The labels that are associated with this statement. + + + + Gets or sets the expression to return. Can be null to return "undefined". + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a javascript statement. + + + + + Creates a new Statement instance. + + The labels that are associated with this statement. + + + + Returns a value that indicates whether the statement has one or more labels attached to + it. + + + + + Gets or sets the labels associated with this statement. + + + + + Gets or sets the portion of source code associated with this statement. For + single-line statements this encompasses the whole statement but for multi-line (block) + statements it only encompasses part of the statement. + + + + + Locals needed by GenerateStartOfStatement() and GenerateEndOfStatement(). + + + + + Gets or sets a value that indicates whether the break statement will be handled + specially by the calling code - this means that GenerateStartOfStatement() and + GenerateEndOfStatement() do not have to generate code to handle the break + statement. + + + + + Gets or sets a value that indicates whether the debugging information will be + handled specially by the calling code - this means that GenerateStartOfStatement() + and GenerateEndOfStatement() do not have to set this information. + + + + + Gets or sets a label marking the end of the statement. + + + + + Generates CIL for the start of every statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + Variables common to both GenerateStartOfStatement() and GenerateEndOfStatement(). + + + + Generates CIL for the end of every statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + Variables common to both GenerateStartOfStatement() and GenerateEndOfStatement(). + + + + Converts the statement to a string. + + A string representing this statement. + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a javascript switch statement. + + + + + Creates a new SwitchStatement instance. + + The labels that are associated with this statement. + + + + Gets or sets an expression that represents the value to switch on. + + + + + Gets a list of case clauses (including the default clause). + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a single case statement inside a switch statement. + + + + + Gets or sets an expression that must match the switch value for the case to execute. + A value of null indicates this is the default clause. + + + + + Gets a list of the statement(s) in the body of the case statement. + + + + + Represents a throw statement. + + + + + Creates a new ThrowStatement instance. + + The labels that are associated with this statement. + + + + Gets or sets an expression which evaluates to the value to throw. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a try-catch-finally statement. + + + + + Creates a new TryCatchFinallyStatement instance. + + + + + Gets or sets the statement(s) inside the try block. + + + + + Gets or sets the statement(s) inside the catch block. Can be null. + + + + + Gets or sets the name of the variable to receive the exception. Can be null if + CatchStatement is also null or if the catch variable binding was omitted. + + + + + Gets or sets the statement(s) inside the finally block. Can be null. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a javascript var, let or const statement. + + + + + Creates a new VarStatement instance. + + The labels that are associated with this statement. + The scope the variables are defined within. + + + + Gets the scope the variables are defined within. + + + + + Indicates whether this is a 'var', 'let' or 'const' declaration. + + + + + Gets a list of variable declarations. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a variable declaration. + + + + + Gets the type of declaration. + + + + + Gets the name of the variable that is being declared. + + + + + Gets or sets the initial value of the variable. Can be null. + + + + + Gets or sets the portion of source code associated with the declaration. + + + + + Represents a javascript while statement. + + + + + Creates a new WhileStatement instance. + + The labels that are associated with this statement. + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a javascript with statement. + + + + + Creates a new WithStatement instance. + + The labels that are associated with this statement. + + + + The Scope associated with the with body. This is special as "var a" weirdly refers to + the scope object, if a property named "a" exists. + + + + + Gets or sets the body of the with statement. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a non-runtime compiler error. + + + + + Creates a new syntax error exception. + + A description of the error. + The line number in the source file the error occurred on. + The path or URL of the source file. Can be null. + + + + Creates a new syntax error exception. + + A description of the error. + The line number in the source file the error occurred on. + The path or URL of the source file. Can be null. + The name of the function. Can be null. + + + + Gets the line number in the source file the error occurred on. Can be 0 if no + line number information is available. + + + + + Gets the path or URL of the source file. Can be null if no source information + is available. + + + + + Gets the name of the function where the exception occurred. Can be null if no + source information is available. + + + + + Represents an arbitrarily large signed integer. + + + + + Initializes a new instance of the BigInteger structure using a 32-bit signed integer + value. + + A 32-bit signed integer. + + + + Initializes a new instance of the BigInteger structure using a 64-bit signed integer + value. + + A 64-bit signed integer. + + + + Gets a value that represents the number zero (0). + + + + + Gets a value that represents the number one (1). + + + + + Gets a number that indicates the sign (negative, positive or zero) of the current + BigInteger object. + + + + + Adds two BigInteger values and returns the result. + + The first value to add. + The second value to add. + The sum of and . + + + + Returns the product of two BigInteger values. + + The first number to multiply. + The second number to multiply. + The product of the and + parameters. + + + + Subtracts one BigInteger value from another and returns the result. + + The value to subtract from. + The value to subtract. + The result of subtracting from + . + + + + Shifts a BigInteger value a specified number of bits to the left. + + The value whose bits are to be shifted. + The number of bits to shift to the left. + Can be negative to shift to the right. + A value that has been shifted to the left by the specified number of bits. + + + + Shifts a BigInteger value a specified number of bits to the right. + + The value whose bits are to be shifted. + The number of bits to shift to the right. + A value that has been shifted to the right by the specified number of bits. + Can be negative to shift to the left. + Note: unlike System.Numerics.BigInteger, negative numbers are treated + identically to positive numbers. + + + + Multiply by m and add a. + + + + + + + + + Computes b x 5 ^ k. + + + + + + + + Returns -1 if a < b, 0 if they are the same, or 1 if a > b. + + + + + + + + Negates a specified BigInteger value. + + The value to negate. + The result of the parameter multiplied by negative + one (-1). + + + + Modifies the given values so they are suitable for passing to Quorem. + + The number that will be divided. + The number to divide by. + + + + Modifies the given values so they are suitable for passing to Quorem. + + The number that will be divided. + The number to divide by. + Another value involved in the division. + + + + Calculates the integer result of dividing by + then sets to the remainder. + + The number that will be divided. + The number to divide by. + The integer that results from dividing by + . + + + + Decrements the current value of the BigInteger object. + + + + + Equivalent to BigInteger.Pow but with integer arguments. + + The number to be raised to a power. + The number that specifies the power. + The number raised to the power + . + + + + Gets the absolute value of a BigInteger object. + + A number. + The absolute value of . + + + + Returns the logarithm of a specified number in a specified base. + + A number whose logarithm is to be found. + The base of the logarithm. + The base logarithm of . + + + + Returns a value that indicates whether the current instance and a specified BigInteger + object have the same value. + + The object to compare. + true if this BigInteger object and have the + same value; otherwise, false. + + + + Returns the hash code for the current BigInteger object. + + A 32-bit signed integer hash code. + + + + Converts the string representation of a number to its BigInteger equivalent. + + A string that contains the number to convert. + A value that is equivalent to the number specified in the + parameter. + + + + Converts the numeric value of the current BigInteger object to its equivalent string + representation. + + The string representation of the current BigInteger value. + + + + Returns a new instance BigInteger structure from a 64-bit double precision floating + point value. + + A 64-bit double precision floating point value. + The corresponding BigInteger value. + + + + Returns a double that corresponds to the BigInteger value. + + A double that corresponds to the BigInteger value. + + + + Returns the number of leading zero bits in the given 32-bit integer. + + A 32-bit integer. + The number of leading zero bits in the given 32-bit integer. Returns + 32 if is zero. + + + + Used to indicate that the script engine should run in compatibility mode. + + + + + Indicates that the script engine should run in the most standards compliant mode. + + + + + Indicates that the script engine should conform to the ECMAScript 3 specification. + This has the following effects: + 1. "this" is converted to an object at the call site of function calls. + 2. parseInt() parses octal numbers without requiring an explicit radix. + 3. NaN, undefined and Infinity can be modified. + 4. The list of keywords is much longer (for example, 'abstract' is a keyword). + + + + + Represents the result of compiling a script. + + + + + Compiles source code into a quickly executed form, using the given compiler options. + + The javascript source code to execute. + Compiler options, or null to use the default options. + A CompiledScript instance, which can be executed as many times as needed. + is a null reference. + + + + Gets the body of the generated method in the form of disassembled IL code. Will be + null unless was set to + true. + + + + + Executes the compiled eval code. + + The script engine to use to execute the script. + The result of the eval. + is a null reference. + + + + Represents the result of compiling a script. + + + + + Compiles source code into a quickly executed form, using the given compiler options. + + The javascript source code to execute. + Compiler options, or null to use the default options. + A CompiledScript instance, which can be executed as many times as needed. + is a null reference. + + + + Gets the body of the generated method in the form of disassembled IL code. Will be + null unless was set to + true. + + + + + Executes the compiled script. + + The script engine to use to execute the script. + is a null reference. + + + + Represents a string that supports efficient concatenation. This class is used instead of + when two strings are concatenated together using the addition + operator (+) or the concat() function. Use of this class avoids the creation of useless + intermediary strings and by doing so speeds up string concatenation dramatically + (this change improved sunspider/string-validate-input.js by almost 20x). + + + + + Creates a new ConcatenatedString instance from the given string. + + The initial contents of the concatenated string. + + + + Creates a new ConcatenatedString instance by concatenating the given strings. + + The left-most string to concatenate. + The right-most string to concatenate. + + + + Creates a new ConcatenatedString instance by concatenating the given strings. + + The strings to concatenate to form the initial value for this + object. The array must not be altered after passing it to this constructor. + + + + Gets the length, in characters, of the ConcatenatedString object. + + + + + Returns a new ConcatenatedString instance containing the concatenation of this ConcatenatedString + and the given object (converted to a string). + + The object to append to this string. + A new ConcatenatedString instance representing the concatenated string. + + + + Returns a new ConcatenatedString instance containing the concatenation of this ConcatenatedString + and the given string. + + The string to append. + A new ConcatenatedString instance representing the concatenated string. + + + + Returns a new ConcatenatedString instance containing the concatenation of this ConcatenatedString + and the given string. + + The string to append. + A new ConcatenatedString instance representing the concatenated string. + + + + Appends the given object (converted to a string) to the end of this object. + + The object to append. + + + + Appends the given string to the end of this object. + + The string to append. + + + + Appends the given string to the end of this object. + + The string to append. + + + + Returns a string representing the current object. + + A string representing the current object. + + + + Represents a wrapper for javascript error objects. + + + + + Creates a new JavaScriptException instance based on the given object. + + The javascript object that was thrown. + + + + Creates a new JavaScriptException instance based on the given object. + + The javascript object that was thrown. + The line number in the source file the error occurred on. + The path or URL of the source file. Can be null. + The name of the function. Can be null. + + + + Creates a new JavaScriptException instance. + + The type of error, e.g. Error, RangeError, etc. + A description of the error. + + + + Creates a new JavaScriptException instance. + + The type of error, e.g. Error, RangeError, etc. + A description of the error. + The exception that is the cause of the current exception, + or null if no inner exception is specified. + + + + Creates a new JavaScriptException instance. + + The type of error, e.g. Error, RangeError, etc. + A description of the error. + The line number in the source file the error occurred on. + The path or URL of the source file. Can be null. + + + + Creates a new JavaScriptException instance. + + The type of error, e.g. Error, RangeError, etc. + A description of the error. + The line number in the source file the error occurred on. + The path or URL of the source file. Can be null. + The exception that is the cause of the current exception, + or null if no inner exception is specified. + + + + Creates a new JavaScriptException instance. + + The type of error, e.g. Error, RangeError, etc. + A description of the error. + The line number in the source file the error occurred on. + The path or URL of the source file. Can be null. + The name of the function. Can be null. + + + + Gets a reference to the JavaScript Error object. + + + + + Gets the type of error, e.g. ErrorType.TypeError or ErrorType.SyntaxError. + + + + + The error message, excluding the error type. + + + + + Gets the line number in the source file the error occurred on. Can be 0 if no + line number information is available. + + + + + Gets the path or URL of the source file. Can be null if no source information + is available. + + + + + Gets the name of the function where the exception occurred. Can be null if no + source information is available. + + + + + Gets a reference to the script engine associated with this object. Will be null + for statements like "throw 2". + + + + + Returns the error instance associated with this exception. + + The script engine used to create the error object. + A new Error instance. + + + + Represents the JavaScript "null" type and provides the one and only instance of that type. + + + + + Creates a new Null instance. + + + + + Gets the one and only "null" instance. + + + + + Returns a string representing the current object. + + A string representing the current object. + + + + Converts numbers into strings. + + + + + Used to specify the type of number formatting that should be applied. + + + + + Specifies that the shortest number that accurately represents the number should be + displayed. Scientific notation is used if the exponent is less than -6 or greater + than twenty. The precision parameter has no semantic meaning. + + + + + Specifies that a fixed number of significant figures should be displayed (specified + by the precision parameter). If the number cannot be displayed using the given + number of digits, scientific notation is used. + + + + + Specifies that a fixed number of digits should be displayed after the decimal place + (specified by the precision parameter). Scientific notation is used if the + exponent is greater than twenty. + + + + + Specifies that numbers should always be displayed in scientific notation. The + precision parameter specifies the number of figures to display after the decimal + point. + + + + + Converts a number to a string. + + The value to convert to a string. + The base of the number system to convert to. + The type of formatting to apply. + + This value is dependent on the formatting style: + Regular - this value has no meaning. + Precision - the number of significant figures to display. + Fixed - the number of figures to display after the decimal point. + Exponential - the number of figures to display after the decimal point. + + + + + Converts a number to a string. + + The value to convert to a string. + The base of the number system to convert to. + The number format style to use. + The type of formatting to apply. + + This value is dependent on the formatting style: + Regular - this value has no meaning. + Precision - the number of significant figures to display. + Fixed - the number of figures to display after the decimal point. + Exponential - the number of figures to display after the decimal point. + + + + + Calculates the minimum increment that creates a number distinct from the value that was + provided. The error for the number is plus or minus half the result of this method + (note that the number returned by this method may be so small that dividing it by two + produces zero). + + The number to calculate an error value for. + The minimum increment that creates a number distinct from the value that was + provided. + + + + Scales the given double-precision number by multiplying and then shifting it. + + The value to scale. + The multiplier. + The power of two scale factor. + A BigInteger containing the result of multiplying by + and then shifting left by bits. + + + + Counts the number of trailing zero bits in the given 64-bit value. + + The 64-bit value. + The number of trailing zero bits in the given 64-bit value. + + + + Calculates (int)Math.Floor(Math.Log(value, radix)). + + The value to calculate the log for. + 10 for base-10. + The logarithm of the provided value, rounded down to the nearest integer. + + + + Parses strings into numbers. + + + + + Converts a string to a number (used by parseFloat). + + The string to convert. + The result of parsing the string as a number. + + + + Converts a string to a number (used in type coercion). + + The result of parsing the string as a number. + + + + Parses a number and returns the corresponding double-precision value. + + The reader to read characters from. + The first character of the number. Must be 0-9 or a period. + Upon returning, contains the type of error if one occurred. + + + The numeric value, or NaN if the number is invalid. + + + + Converts a string to an integer (used by parseInt). + + The input text to parse. + The numeric base to use for parsing. Pass zero to use base 10 + except when the input string starts with '0' in which case base 16 or base 8 are used + instead. + true if numbers with a leading zero should be parsed + as octal numbers. + The result of parsing the string as a integer. + + + + Parses a hexidecimal number and returns the corresponding double-precision value. + + The reader to read characters from. + The numeric value, or NaN if the number is invalid. + + + + Parses a octal number and returns the corresponding double-precision value. + + The reader to read characters from. + The numeric value, or NaN if the number is invalid. + + + + Parses a binary number and returns the corresponding double-precision value. + + The reader to read characters from. + The numeric value, or NaN if the number is invalid. + + + + Determines if the given character is whitespace or a line terminator. + + The unicode code point for the character. + true if the character is whitespace or a line terminator; false + otherwise. + + + + Modifies the initial estimate until the closest double-precision number to the desired + value is found. + + The initial estimate. Assumed to be very close to the + result. + The power-of-ten scale factor. + The desired value, already scaled using the power-of-ten + scale factor. + The closest double-precision number to the desired value. If there are two + such values, the one with the least significant bit set to zero is returned. + + + + Adds ULPs (units in the last place) to the given double-precision number. + + The value to modify. + The number of ULPs to add. Can be negative. + The modified number. + + + + Scales the given double-precision number by multiplying and then shifting it. + + The value to scale. + The multiplier. + The power of two scale factor. + A BigInteger containing the result of multiplying by + and then shifting left by bits. + + + + Represents the JavaScript script engine. This is the first object that needs to be + instantiated in order to execute javascript code. + + + + + Initializes a new scripting environment. + + + + + Implements the behaviour of the function that is the prototype of the Function object. + + + + + + + + + Gets or sets a value that indicates whether to force ECMAScript 5 strict mode, even if + the code does not contain a strict mode directive ("use strict"). The default is + false. + + + + + Gets or sets a value that indicates whether the script engine should run in + compatibility mode. + + + + + Gets or sets a value that indicates whether to disassemble any generated IL and store it + in the associated function. + + + + + Get or sets a value that indicates the maximum recursion depth of user-defined + functions that is allowed by this script engine. + When a user-defined function exceeds the recursion depth limit, a + will be thrown. + The default value is 0, which allows unlimited recursion. + + + + + Represents a method that transforms a stack frame when formatting the stack trace. + + + + + + Gets or sets a delegate that transforms a stack frame when + formatting the stack trace for . + This can be useful if you are using a source map to map generated lines + to source lines and the stack trace should contain the source line numbers. + + + + + The instance prototype of the Function object (i.e. Function.InstancePrototype). + + + This property solves a circular reference in the initialization, plus it speeds up + initialization. + + + + + The prototype shared by all iterators. + + + + + The prototype of all string iterators. + + + + + The prototype of all map iterators. + + + + + The prototype of all set iterators. + + + + + The prototype of all array iterators. + + + + + Gets the built-in global object. This object is implicitly accessed when creating + global variables and functions. + + + + + Gets the built-in Array object. + + + + + Gets the built-in Boolean object. + + + + + Gets the built-in Date object. + + + + + Gets the built-in Function object. + + + + + Gets the built-in Map object. + + + + + Gets the built-in Math object. + + + + + Gets the built-in Number object. + + + + + Gets the built-in Object object. + + + + + Gets the built-in Promise object. + + + + + Gets the built-in Proxy object. + + + + + Gets the built-in Reflect object. + + + + + Gets the built-in RegExp object. + + + + + Gets the built-in String object. + + + + + Gets the built-in String object. + + + + + Gets the built-in Symbol object. + + + + + Gets the built-in WeakMap object. + + + + + Gets the built-in WeakSet object. + + + + + Gets the built-in Error object. + + + + + Gets the built-in RangeError object. + + + + + Gets the built-in TypeError object. + + + + + Gets the built-in SyntaxError object. + + + + + Gets the built-in URIError object. + + + + + Gets the built-in EvalError object. + + + + + Gets the built-in ReferenceError object. + + + + + Gets the built-in ArrayBuffer object. + + + + + Gets the built-in DataView object. + + + + + Gets the built-in Int8Array object. + + + + + Gets the built-in Uint8Array object. + + + + + Gets the built-in Uint8ClampedArray object. + + + + + Gets the built-in Int16Array object. + + + + + Gets the built-in Uint16Array object. + + + + + Gets the built-in Int32Array object. + + + + + Gets the built-in Uint32Array object. + + + + + Gets the built-in Float32Array object. + + + + + Gets the built-in Float64Array object. + + + + + Gets or sets whether CLR types can be exposed directly to the script engine. If this is set to + false, attempting to instantiate CLR types from script may result in exceptions being + thrown in script. + + + This property is intended to prevent script developers from accessing the entire CLR + type system, for security purposes. When this property is set to false, it should prevent + new instances of CLR types from being exposed to the script engine, even if you have already + exposed CLR types to the script engine. + + + + + Compiles the given source code and returns it in a form that can be executed many + times. + + The javascript source code to execute. + A CompiledScript instance, which can be executed as many times as needed. + is a null reference. + + + + Executes the given source code. Execution is bound to the global scope. + + The javascript source code to execute. + The result of executing the source code. + is a null reference. + + + + Executes the given source code. Execution is bound to the global scope. + + The type to convert the result to. + The javascript source code to execute. + The result of executing the source code. + is a null reference. + + + + Executes the given source code. Execution is bound to the global scope. + + The javascript source code to execute. + The result of executing the source code. + is a null reference. + + + + Executes the given source code. Execution is bound to the global scope. + + The type to convert the result to. + The javascript source code to execute. + The result of executing the source code. + is a null reference. + + + + Executes the given source code. Execution is bound to the global scope. + + The javascript source code to execute. + + + + Executes the given file. If the file does not have a BOM then it is assumed to be UTF8. + Execution is bound to the global scope. + + The path to a javascript file. This can be a local file path or a + UNC path. + is a null reference. + + + + Executes the given file. Execution is bound to the global scope. + + The path to a javascript file. This can be a local file path or a + UNC path. + The character encoding to use if the file lacks a byte order + mark (BOM). + is a null reference. + + + + Executes the given source code. Execution is bound to the global scope. + + The javascript source code to execute. + is a null reference. + + + + Verifies the generated byte code. + + + + + Creates a CompilerOptions instance using the script engine properties. + + A populated CompilerOptions instance. + + + + Gets a value that indicates whether the global variable with the given name is defined. + + The name of the variable to check. + true if the given variable has a value; false otherwise. + Note that a variable that has been set to undefined is still + considered to have a value. + + + + Gets the value of the global variable with the given name. + + The name of the variable to retrieve the value for. + The value of the global variable, or null otherwise. + + + + Gets the value of the global variable with the given name and coerces it to the given + type. + + The type to coerce the value to. + The name of the variable to retrieve the value for. + The value of the global variable, or null otherwise. + Note that null is coerced to the following values: false (if + is bool), 0 (if is int + or double), string.Empty (if is string). + + + + Sets the value of the global variable with the given name. If the property does not + exist, it will be created. + + The name of the variable to set. + The desired value of the variable. This must be of a supported + type (bool, int, double, string, Null, Undefined or a ObjectInstance-derived type). + The property is read-only or the property does + not exist and the object is not extensible. + + + + Calls a global function and returns the result. + + The name of the function to call. + The argument values to pass to the function. + The return value from the function. + + + + Calls a global function and returns the result. + + The type to coerce the value to. + The name of the function to call. + The argument values to pass to the function. + The return value from the function, coerced to the given type. + + + + Sets the global variable with the given name to a function implemented by the provided + delegate. + + The name of the global variable to set. + The delegate that will implement the function. + + + + Fires when the compiler starts parsing javascript source code. + + + + + Fires when the compiler starts optimizing. + + + + + Fires when the compiler starts generating byte code. + + + + + Fires when the compiler starts running javascript code. + + + + + Gets an empty schema. + + + + + Evaluates the given javascript source code and returns the result. + + The source code to evaluate. + The containing scope. + The value of the "this" keyword in the containing scope. + Indicates whether the eval statement is being called from + strict mode code. + The value of the last statement that was executed, or undefined if + there were no executed statements. + + + + Creates a stack trace. + + The name of the error (e.g. "ReferenceError"). + The error message. + The path of the javascript source file that is currently executing. + The name of the currently executing function. + The line number of the statement that is currently executing. + + + + Appends a stack frame to the end of the given StringBuilder instance. + + The StringBuilder to append to. + The path of the javascript source file. + The name of the function. + The line number of the statement. + The method by which the current stack frame was created. + + + + Pushes a frame to the javascript stack. This needs to be called every time there is a + function call. + + The path of the javascript source file that contains the function. + The name of the function that is calling another function. + The line number of the function call. + The type of call that is being made. + + + + Pops a frame from the javascript stack. + + + + + Checks if the given is catchable by JavaScript code with a + catch clause. + Note: This method is public for technical reasons only and should not be used by user code. + + The exception to check. + true if the is catchable, false otherwise + + + + Gets a dictionary that can be used to cache ClrInstanceTypeWrapper instances. + + + + + Gets a dictionary that can be used to cache ClrStaticTypeWrapper instances. + + + + + Returns a cached template array, suitable for passing to a tag function. + + The cache key that identifies the array to return. + The cached template array, or null if no array with the given cache + key has been cached. + + + + Caches a template array using the given cache key. + + The cache key that identifies the array to cache. + The cached value. + + + + Appends a callback that will be executed at the end of script execution. + + The callback function. + + + + This method is called at the end of script execution in order to execute pending + callbacks registered with . + + + + + Clears (and does not execute) all queued post-execute actions. + + + + + Adds a callback to the end of the event queue. + + The action to enqueue. + This method is thread-safe. + + + + The number of queued actions in the event queue. + + + + + Removes the first available action from the event queue, and executes it. + + true if an event queue action was executed, false if the event + queue was empty. + + This method is meant to be called in a loop, like this: + + while (scriptEngine.ExecuteNextEventQueueAction()) { } + + If an exception is thrown, you should assume that the action was successfully removed + from the queue. This means can be called + again without triggering the same exception. + + + + + Represents a script file. + + + + + Creates a new FileScriptSource instance. + + The path of the script file. + The character encoding to use if the file lacks a byte order + mark (BOM). If this parameter is omitted, the file is assumed to be UTF8. + + + + Gets the path of the source file (either a path on the file system or a URL). This + can be null if no path is available. + + + + + Returns a reader that can be used to read the source code for the script. + + A reader that can be used to read the source code for the script, positioned + at the start of the source code. + If this method is called multiple times then each reader must return the + same source code. + + + + Represents a resource that can provide script code. This is the abstract base class of all + the script providers. + + + + + Gets the path of the source file (either a path on the file system or a URL). This + can be null if no path is available. + + + + + Returns a reader that can be used to read the source code for the script. + + A reader that can be used to read the source code for the script, positioned + at the start of the source code. + If this method is called multiple times then each reader must return the + same source code. + + + + Reads the source code within the given span. + + The start and end positions within the source code. + The source code within the given span. + + + + Represents a string containing script code. + + + + + Creates a new StringScriptSource instance. + + The script code. + + + + Creates a new StringScriptSource instance. + + The script code. + The path of the file the script code was retrieved from. + + + + Gets the path of the source file (either a path on the file system or a URL). This + can be null if no path is available. + + + + + Returns a reader that can be used to read the source code for the script. + + A reader that can be used to read the source code for the script, positioned + at the start of the source code. + If this method is called multiple times then each reader must return the + same source code. + + + + Contains stack frame properties which can be transformed when formatting the + stack trace. + + + + + Gets or sets a value that indicates if the stack frame represented by + this should be suppressed, so that + it is not displayed in the stack trace. + The default value is false. + + + + + Gets or sets the line number. A value of 0 means the line number + is unknown. + + + + + Gets or sets the path of the javascript script file. A value of + null means that the path is unknown. + + + + + Gets or sets the name of the function. A value of null or + the empty string ("") means that the path is unknown. + + + + + Contains handy string routines. + + + + + Concatenates a specified separator string between each element of a specified string + array, yielding a single concatenated string. + + The type of the members of + The string to use as a separator. + A collection that contains the objects to concatenate. + A string that consists of the members of delimited + by the string. + + + + Implements the JavaScript equality and comparison rules. + + + + + Compares two objects for equality. Used by the equality operator (==). + + The first object to compare. + The first object to compare. + true if the objects are identical; false otherwise. + + + + Compares two objects for equality. Used by the strict equality operator (===). + + The first object to compare. + The second object to compare. + true if the objects are identical; false otherwise. + + With this algorithm: + 1. NaN is not considered equal to NaN. + 2. +0 and -0 are considered to be equal. + + + + + Determines the ordering of two objects. Used by the less than operator (<). + + The first object to compare. + The second object to compare. + true if is less than ; + false otherwise. + + + + Determines the ordering of two objects. Used by the less than or equal operator (<=). + + The first object to compare. + The second object to compare. + true if is less than or equal to + ; false otherwise. + + + + Determines the ordering of two objects. Used by the greater than operator (>). + + The first object to compare. + The second object to compare. + true if is greater than ; + false otherwise. + + + + Determines the ordering of two objects. Used by the greater than or equal operator (>=). + + The first object to compare. + The second object to compare. + true if is greater than or equal to + ; false otherwise. + + + + Implements the SameValue algorithm. + + The first object to compare. + The second object to compare. + true if the objects are the same value according to the SameValue + algorithm. + + With this algorithm: + 1. NaN is considered equal to NaN. + 2. +0 and -0 are considered to be different. + + + + + Implements the SameValueZero algorithm. + + The first object to compare. + The second object to compare. + true if the objects are the same value according to the SameValueZero + algorithm. + + With this algorithm: + 1. NaN is considered equal to NaN. + 2. +0 and -0 are considered to be equal. + + + + + Provides a hint on how to do the conversion when converting to a primitive. + + + + + Use the default behaviour. + + + + + Prefer converting to a number. + + + + + Prefer converting to a string. + + + + + Implements the JavaScript type conversion rules. + + + + + Converts the given value to the given type. + + The script engine used to create new objects. + The value to convert. + The type to convert the value to. + The converted value. + + + + Converts the given value to the given type. + + The script engine used to create new objects. + The value to convert. + The type to convert the value to. + The converted value. + + + + Converts any JavaScript value to a primitive boolean value. + + The value to convert. + A primitive boolean value. + + + + Converts any JavaScript value to a primitive number value. + + The value to convert. + A primitive number value. + + + + Converts any JavaScript value to a primitive string value. + + The value to convert. + A primitive string value. + + + + Converts any JavaScript value to a primitive string value. + + The value to convert. + The value to return if the input is undefined. + A primitive string value. + + + + Converts any JavaScript value to a concatenated string value. + + The value to convert. + A concatenated string value. + + + + Converts any JavaScript value to an object. + + The script engine used to create new objects. + The value to convert. + An object. + + + + Converts any JavaScript value to an object. + + The script engine used to create new objects. + The value to convert. + The line number in the source file the error occurred on. + The path or URL of the source file. Can be null. + The name of the function. Can be null. + An object. + + + + Converts any JavaScript value to an object. + + The script engine used to create new objects. + The value to convert. + An object. + + + + Converts any JavaScript value to a primitive value. + + The value to convert. + Specifies whether toString() or valueOf() should be + preferred when converting to a primitive. + A primitive (non-object) value. + + + + Converts a value to a property key (either a string or a symbol). + + The value to convert. + A property key value. + + + + Converts any JavaScript value to an integer. + + The value to convert. + An integer value. + + + + Converts any JavaScript value to a 32-bit integer. + + The value to convert. + A 32-bit integer value. + + + + Converts any JavaScript value to an unsigned 32-bit integer. + + The value to convert. + An unsigned 32-bit integer value. + + + + Converts any JavaScript value to a signed 16-bit integer. + + The value to convert. + A signed 16-bit integer value. + + + + Converts any JavaScript value to an unsigned 16-bit integer. + + The value to convert. + An unsigned 16-bit integer value. + + + + Converts any JavaScript value to a signed 8-bit integer. + + The value to convert. + A signed 8-bit integer value. + + + + Converts any JavaScript value to an unsigned 8-bit integer. + + The value to convert. + An unsigned 8-bit integer value. + + + + Utility method to convert an object array to a typed array. + + The type to convert to. + The script engine used to create new objects. + The array to convert. + The number of elements to skip at the beginning of the array. + A typed array. + + + + Contains type-related functionality that isn't conversion or comparison. + + + + + Gets the type name for the given object. Used by the typeof operator. + + The object to get the type name for. + The type name for the given object. + + + + Returns true if the given value is undefined. + + The object to check. + true if the given value is undefined; false otherwise. + + + + Returns true if the given value is a supported numeric type. + + The object to check. + true if the given value is a supported numeric type; false + otherwise. + + + + Returns true if the given value is a supported string type. + + The object to check. + true if the given value is a supported string type; false + otherwise. + + + + Converts the given value into a standard .NET type, suitable for returning from an API. + + The value to normalize. + The value as a standard .NET type. + + + + Enumerates the names of the enumerable properties on the given object, including + properties defined on the object's prototype. Used by the for-in statement. + + The script engine used to convert the given value to an object. + The object to enumerate. + An enumerator that iteratively returns property names. + + + + Adds two objects together, as if by the javascript addition operator. + + The left hand side operand. + The right hand side operand. + Either a number or a concatenated string. + + + + Determines if the given value is a supported JavaScript primitive. + + The value to test. + true if the given value is a supported JavaScript primitive; + false otherwise. + + + + Determines if the given value is a supported JavaScript primitive or derives from + ObjectInstance. + + The value to test. + true if the given value is a supported JavaScript primitive or derives + from ObjectInstance; false otherwise. + + + + Throws a TypeError when the given value is null or undefined. + + The associated script engine. + The value to check. + The name of the function which is doing the check. + + + + Utility method for create a slice of an array. + + The array to slice. + The offset to begin the resulting array. + An array containing the input array elements, excluding the first + entries. + + + + Determines if the given number is negative zero. + + The value to test. + true if the value is negative zero; false otherwise. + + + + Determines if the given number is positive zero. + + The value to test. + true if the value is positive zero; false otherwise. + + + + Converts an iteratable object into a iterator by looking up the @@iterator property, + then calling that value as a function. + + The script engine. + The object to get a iterator from. + An iterator object, with a next function, or null if the iterator + symbol value is undefined or null. + + + + Creates an iterator object that can iterate over a .NET enumerable collection. The + returned object also supports the iterable protocol, meaning it can be used in a for-of + loop. + + The script engine to associate the new object with. + The enumerable collection. The item type must be a supported + type. + An iterator object that also supports the iterable protocol. + + + + Converts an iteratable object into a iterator by looking up the @@iterator property, + then calling that value as a function. Throws an exception if the object isn't iterable. + + The script engine. + The object to get a iterator from. + An iterator object, with a next function. + + + + Iterate over the values in an iterator. + + The script engine. + The iterator object. Must contain a next function. + An enumerable list of iterator values. + + + + Implements the logic for the for-of operator. + + The script engine. + The object to get a iterator from. + An enumerable list of iterator values. + + + + Create an array whose elements are provided by the indexed properties of an array-like object. + + The array-like object to convert. + An array. + + + + Retrieves the constructor that should be used to create new objects that are derived + from the argument object . + + The object to check. + The constructor to return if no @@species property + can be found. + A constructor that can be used to create new objects. + + + + Represents the JavaScript "undefined" type and provides the one and only instance of that type. + + + + + Creates a new Undefined instance. + + + + + Gets the one and only "undefined" instance. + + + + + Returns a string representing the current object. + + A string representing the current object. + + + + Implements the array algorithms that are shared between arrays and typed arrays. + + + + + Creates a new ArrayWrapper instance. + + The array-like object that is being wrapped. + The number of elements in the array. + + + + The current scripting environment. + + + + + The array-like object that is being wrapped. + + + + + The number of elements in the array. + + + + + Gets or sets an array element within the range 0 .. Length-1 (inclusive). + + The index to get or set. + The value at the given index. + + + + Deletes the value at the given array index, throwing an exception on error. + + The array index to delete. + + + + Indicates whether the array index exists (has a value). + + The index to check. + true if the index exists, false otherwise. + + + + Creates a new array of the same type as this one. + + The values in the new array. + A new array object. + + + + Convert an untyped value to a typed value. + + The value to convert. + The value converted to type . + + + + Concatenates all the elements of the array, using the specified separator between each + element. If no separator is provided, a comma is used for this purpose. + + The string to use as a separator. + A string that consists of the element values separated by the separator string. + + + + Reverses the order of the elements in the array. + + The array that is being operated on. + + + + Returns a section of an array. + + The index of the first element in the section. If this value is + negative it is treated as an offset from the end of the array. + The index of the element just past the last element in the section. + If this value is negative it is treated as an offset from the end of the array. If + is less than or equal to then an empty + array is returned. + A section of an array. + + + + Sorts the array. + + A comparison function. + The array that was sorted. + + + + Returns a locale-specific string representing this object. + + A locale-specific string representing this object. + + + + Returns a string representing this object. + + A string representing this object. + + + + Returns the index of the given search element in the array, starting from + . + + The value to search for. + The array index to start searching. + The index of the given search element in the array, or -1 if the + element wasn't found. + + + + Returns the index of the given search element in the array, searching backwards from + . + + The value to search for. + The array index to start searching. + The index of the given search element in the array, or -1 if the + element wasn't found. + + + + Determines if every element of the array matches criteria defined by the given user- + defined function. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + true if every element of the array matches criteria defined by the + given user-defined function; false otherwise. + + + + Determines if at least one element of the array matches criteria defined by the given + user-defined function. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + true if at least one element of the array matches criteria defined by + the given user-defined function; false otherwise. + + + + Calls the given user-defined function once per element in the array. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. + The value of this in the context of the callback function. + + + + Creates a new array with the results of calling the given function on every element in + this array. + + A user-defined function that is called for each element + in the array. This function is called with three arguments: the value of the element, + the index of the element, and the array that is being operated on. The value that is + returned from this function is stored in the resulting array. + The value of this in the context of the callback function. + A new array with the results of calling the given function on every element + in the array. + + + + Returns the first element in the given array that passes the test implemented by the + given function. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + The first element that results in the callback returning true. + + + + Creates a new array with the elements from this array that pass the test implemented by + the given function. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + A copy of this array but with only those elements which produce true + when passed to the provided function. + + + + Accumulates a single value by calling a user-defined function for each element. + + A user-defined function that is called for each element + in the array. This function is called with four arguments: the current accumulated + value, the value of the element, the index of the element, and the array that is being + operated on. The return value for this function is the new accumulated value and is + passed to the next invocation of the function. + The initial accumulated value. + The accumulated value returned from the last invocation of the callback + function. + + + + Accumulates a single value by calling a user-defined function for each element + (starting with the last element in the array). + + A user-defined function that is called for each element + in the array. This function is called with four arguments: the current accumulated + value, the value of the element, the index of the element, and the array that is being + operated on. The return value for this function is the new accumulated value and is + passed to the next invocation of the function. + The initial accumulated value. + The accumulated value returned from the last invocation of the callback + function. + + + + Copies the sequence of array elements within the array to the position starting at + target. The copy is taken from the index positions of the second and third arguments + start and end. The end argument is optional and defaults to the length of the array. + This method has the same algorithm as Array.prototype.copyWithin. + + Target start index position where to copy the elements to. + Source start index position where to start copying elements from. + Optional. Source end index position where to end copying elements from. + The array that is being operated on. + + + + Fills all the elements of a typed array from a start index to an end index with a + static value. + + The value to fill the typed array with. + Optional. Start index. Defaults to 0. + Optional. End index (exclusive). Defaults to the length of the array. + The array that is being operated on. + + + + Returns an index in the typed array, if an element in the typed array satisfies the + provided testing function. Otherwise -1 is returned. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + The first element that results in the callback returning true. + + + + Determines whether an array includes a certain value among its entries. + + The value to search for. + The array index to start searching. + true given search element in the array, or false if the element + wasn't found. + + + + Sorts a array using the quicksort algorithm. + + A comparison function. + The first index in the range. + The last index in the range. + + + + Sorts a array using the insertion sort algorithm. + + A comparison function. + The first index in the range. + The last index in the range. + + + + Swaps the elements at two locations in the array. + + The location of the first element. + The location of the second element. + + + + Represents the built-in javascript Array object. + + + + + Creates a new Array object. + + The next object in the prototype chain. + + + + Creates a new Array instance. + + + + + Creates a new Array instance. + + The initial elements of the new array. + + + + Creates a new Array instance. + + The prototype of the newly created array. + The initial elements of the new array. + + + + A reference to the constructor function that is used to create derived objects. + + + + + Creates a new Array instance and initializes the contents of the array. + Called when the Array object is invoked like a function, e.g. var x = Array(length). + + The initial elements of the new array. + + + + Creates a new Array instance and initializes the contents of the array. + Called when the new expression is used on this object, e.g. var x = new Array(length). + + The initial elements of the new array. + + + + Creates a new Array instance and initializes the contents of the array. + Called when the new expression is used on this object, e.g. var x = new Array(length). + + The value of the new.target expression. + The initial elements of the new array. + + + + Tests if the given value is an Array instance. + + The value to test. + true if the given value is an Array instance, false otherwise. + + + + Creates a new Array instance from a variable number of arguments. + + The difference between Array.of() and the Array constructor is in the handling of + integer arguments: Array.of(7) creates an array with a single element, 7, whereas + Array(7) creates an empty array with a length property of 7. + + The script engine to use. + The elements of the new array. + + + + The Array.from() method creates a new, shallow-copied Array instance from an array-like + or iterable object. + + The script engine to use. + An array-like or iterable object to convert to an array. + + + + + The Array.from() method creates a new, shallow-copied Array instance from an array-like + or iterable object. + + The script engine to use. + An array-like or iterable object to convert to an array. + Map function to call on every element of the array. + Value to use as this when executing . + + + + + Represents an instance of the JavaScript Array object. + + + + + Creates a new array with the given length and capacity. + + The next object in the prototype chain. + The initial value of the length property. + The number of elements to allocate. + + + + Creates a new array and initializes it with the given array. + + The next object in the prototype chain. + The initial values in the array. + + + + Creates a new array and initializes it with the given sparse array. + + The next object in the prototype chain. + The sparse array to use as the backing store. + The initial value of the length property. + + + + Creates the Array prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + Gets or sets the number of elements in the array. Equivalent to the javascript + Array.prototype.length property. + + + + + Gets an enumerable list of the defined element values stored in this array. + + + + + Attempts to parse a string into a valid array index. + + The property key (either a string or a Symbol). + The array index value, or uint.MaxValue if the property name does not reference + an array index. + + + + Converts the JS array to a .NET object array. + + A .NET object array. + + + + Gets a descriptor for the property with the given array index. + + The array index of the property. + A property descriptor containing the property value and attributes. + The prototype chain is not searched. + + + + Sets the value of the property with the given array index. If a property with the + given index does not exist, or exists in the prototype chain (and is not a setter) then + a new property is created. + + The array index of the property to set. + The value to set the property to. This must be a javascript + primitive (double, string, etc) or a class derived from . + The value of the "this" keyword inside a getter. + true to throw an exception if the property could not + be set. This can happen if the property is read-only or if the object is sealed. + false if is false and an error + occurred; true otherwise. + + + + Deletes the property with the given array index. + + The array index of the property to delete. + true to throw an exception if the property could not + be set because the property was marked as non-configurable. + true if the property was successfully deleted, or if the property did + not exist; false if the property was marked as non-configurable and + was false. + + + + Defines or redefines the value and attributes of a property. The prototype chain is + not searched so if the property exists but only in the prototype chain a new property + will be created. + + The property key of the property to modify. + The property value and attributes. + true to throw an exception if the property could not + be set. This can happen if the property is not configurable or the object is sealed. + true if the property was successfully modified; false otherwise. + + + + Gets an enumerable list of every property name associated with this object. + Does not include properties in the prototype chain. + + + + + Returns a new array consisting of the values of this array plus any number of + additional items. Values are appended from left to right. + + The array that is being operated on. + Any number of items to append. + A new array consisting of the values of this array plus any number of + additional items. + + + + Removes the last element from the array and returns it. + + The array to operate on. + The last element from the array. + + + + Removes the last element from the array and returns it. + + The last element from the array. + + + + Appends one or more elements to the end of the array. + + The array that is being operated on. + The items to append to the array. + + + + Appends one element to the end of the array. + + The item to append to the array. + + + + The first element in the array is removed from the array and returned. All the other + elements are shifted down in the array. + + The array that is being operated on. + The first element in the array. + + + + Deletes a range of elements from the array and optionally inserts new elements. + + The array that is being operated on. + An array containing the deleted elements, if any. + + + + Deletes a range of elements from the array and optionally inserts new elements. + + The array that is being operated on. + The index to start deleting from. + An array containing the deleted elements, if any. + + + + Deletes a range of elements from the array and optionally inserts new elements. + + The array that is being operated on. + The index to start deleting from. + The number of elements to delete. + The items to insert. + An array containing the deleted elements, if any. + + + + Prepends the given items to the start of the array. + + The array that is being operated on. + The items to prepend. + The new length of the array. + + + + Creates a new array with all sub-array elements concatenated into it recursively up to + the specified depth. + + The array that is being operated on. + The depth level specifying how deep a nested array structure + should be flattened. Defaults to 1. + A new array with the sub-array elements concatenated into it. + + + + Maps each element using a mapping function, then flattens the result into a new array. + + The array that is being operated on. + A function that produces an element of the new Array, taking + three arguments: currentValue, index, array. + Value to use as this when executing callback. + A new array with each element being the result of the callback function and + flattened to a depth of 1. + + + + Implements an adapter for regular JS arrays. + + + + + Creates a new ArrayInstanceWrapper instance. + + The array-like object that is being wrapped. + + + + Gets or sets an array element within the range 0 .. Length-1 (inclusive). + + The index to get or set. + The value at the given index. + + + + Deletes the value at the given array index, throwing an exception on error. + + The array index to delete. + + + + Indicates whether the array index exists (has a value). + + The index to check. + true if the index exists, false otherwise. + + + + Creates a new array of the same type as this one. + + The values in the new array. + A new array object. + + + + Convert an untyped value to a typed value. + + The value to convert. + The typed value. + + + + Concatenates all the elements of the array, using the specified separator between each + element. If no separator is provided, a comma is used for this purpose. + + The array that is being operated on. + The string to use as a separator. + A string that consists of the element values separated by the separator string. + + + + Reverses the order of the elements in the array. + + The array that is being operated on. + The array that is being operated on. + + + + Returns a section of an array. + + The array that is being operated on. + The index of the first element in the section. If this value is + negative it is treated as an offset from the end of the array. + The index of the element just past the last element in the section. + If this value is negative it is treated as an offset from the end of the array. If + is less than or equal to then an empty + array is returned. + A section of an array. + + + + Sorts the array. + + The array that is being operated on. + A function which determines the order of the + elements. This function should return a number less than zero if the first argument is + less than the second argument, zero if the arguments are equal or a number greater than + zero if the first argument is greater than Defaults to an ascending ASCII ordering. + The array that was sorted. + + + + Returns a locale-specific string representing this object. + + The array that is being operated on. + A locale-specific string representing this object. + + + + Returns a string representing this object. + + The array that is being operated on. + A string representing this object. + + + + Returns the index of the given search element in the array, starting from + . + + The array that is being operated on. + The value to search for. + The array index to start searching. + The index of the given search element in the array, or -1 if the + element wasn't found. + + + + Returns the index of the given search element in the array, searching backwards from + the end of the array. + + The array that is being operated on. + The value to search for. + The index of the given search element in the array, or -1 if the + element wasn't found. + + + + Returns the index of the given search element in the array, searching backwards from + . + + The array that is being operated on. + The value to search for. + The array index to start searching. + The index of the given search element in the array, or -1 if the + element wasn't found. + + + + Determines if every element of the array matches criteria defined by the given user- + defined function. + + The array that is being operated on. + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + true if every element of the array matches criteria defined by the + given user-defined function; false otherwise. + + + + Determines if at least one element of the array matches criteria defined by the given + user-defined function. + + The array that is being operated on. + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + true if at least one element of the array matches criteria defined by + the given user-defined function; false otherwise. + + + + Calls the given user-defined function once per element in the array. + + The array that is being operated on. + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. + The value of this in the context of the callback function. + + + + Creates a new array with the results of calling the given function on every element in + this array. + + The array that is being operated on. + A user-defined function that is called for each element + in the array. This function is called with three arguments: the value of the element, + the index of the element, and the array that is being operated on. The value that is + returned from this function is stored in the resulting array. + The value of this in the context of the callback function. + A new array with the results of calling the given function on every element + in the array. + + + + Returns the first element in the given array that passes the test implemented by the + given function. + + The array that is being operated on. + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + The first element that results in the callback returning true. + + + + Creates a new array with the elements from this array that pass the test implemented by + the given function. + + The array that is being operated on. + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + A copy of this array but with only those elements which produce true + when passed to the provided function. + + + + Accumulates a single value by calling a user-defined function for each element. + + The array that is being operated on. + A user-defined function that is called for each element + in the array. This function is called with four arguments: the current accumulated + value, the value of the element, the index of the element, and the array that is being + operated on. The return value for this function is the new accumulated value and is + passed to the next invocation of the function. + The initial accumulated value. + The accumulated value returned from the last invocation of the callback + function. + + + + Accumulates a single value by calling a user-defined function for each element + (starting with the last element in the array). + + The array that is being operated on. + A user-defined function that is called for each element + in the array. This function is called with four arguments: the current accumulated + value, the value of the element, the index of the element, and the array that is being + operated on. The return value for this function is the new accumulated value and is + passed to the next invocation of the function. + The initial accumulated value. + The accumulated value returned from the last invocation of the callback + function. + + + + Copies the sequence of array elements within the array to the position starting at + target. The copy is taken from the index positions of the second and third arguments + start and end. The end argument is optional and defaults to the length of the array. + This method has the same algorithm as Array.prototype.copyWithin. + + The array that is being operated on. + Target start index position where to copy the elements to. + Source start index position where to start copying elements from. + Optional. Source end index position where to end copying elements from. + The array that is being operated on. + + + + Fills all the elements of a typed array from a start index to an end index with a + static value. + + The array that is being operated on. + The value to fill the typed array with. + Optional. Start index. Defaults to 0. + Optional. End index (exclusive). Defaults to the length of the array. + The array that is being operated on. + + + + Returns an index in the typed array, if an element in the typed array satisfies the + provided testing function. Otherwise -1 is returned. + + The array that is being operated on. + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + The first element that results in the callback returning true. + + + + Returns a new array iterator object that contains the key/value pairs for each index in + the array. + + An array iterator object that contains the key/value pairs for each index in + the array. + + + + Returns a new array iterator object that contains the keys for each index in the array. + + An array iterator object that contains the keys for each index in the array. + + + + Returns a new array iterator object that contains the values for each index in the + array. + + An array iterator object that contains the values for each index in the + array. + + + + Determines whether an array includes a certain value among its entries. + + The array that is being operated on. + The value to search for. + The array index to start searching. + true given search element in the array, or false if the element + wasn't found. + + + + Gets the number of items in the array. + + The array that is being operated on. + The number of items in the array. + + + + Sets the number of items in the array. + + The array that is being operated on. + The new value of the length property. + + + + Enlarges the size of the dense array. + + The new capacity of the array. + The valid number of items in the array. + + + + Recursively appends sub-array elements into the given list. + + The list to append to. + The array elements to append. + A function that produces an element of the new Array, taking + three arguments: currentValue, index, array. + Value to use as this when executing callback. + The depth of recursion when iterating through elements. + + + + Indicates whether the given object should be concatenated as if it was an array. + + The script engine. + The value to check. + true if the value should be concatenated as if it was an array, + false otherwise. + + + + Enumerates the list of array-like properties (with numeric names). + + The script engine. + The object to enumerate properties of. + The value of the length property. No indices are returned that + are higher or equal to this value. + Enumerates the list of array-like properties (with numeric names). + + + + Represents an iteration over an array-like object. + + + + + Creates a new array iterator. + + The next object in the prototype chain. + The array-like object to iterate over. + The type of values to return. + + + + Creates the array iterator prototype object. + + The script environment. + + + + The tag value that is used by the base implementation of toString(). + + + + + Moves the iterator to the next element in the array. + + An object containing two properies: value and done. + + + + Represents an array with non-consecutive elements. + + + + + Creates a sparse array from the given dense array. + + The array to copy items from. + The number of items to copy. + A new sparse array containing the items from the given array. + + + + Deletes (sets to null) an array element. + + The index of the array element to delete. + + + + Deletes (sets to null) a range of array elements. + + The index of the first array element to delete. + The number of array elements to delete. + + + + Deletes (sets to null) a range of array elements. + + The index of the first array element to delete. + The number of array elements to delete. + The parent node of the node to delete from. Can be null. + The node to delete from. + The index of the node, in the parent node's array. + The depth of the tree, treating as the root. + + + + Copies the elements of the sparse array to this sparse array, starting at a particular + index. Existing values are overwritten. + + The sparse array to copy. + The zero-based index at which copying begins. + The number of elements to copy. + + + + Copies the elements of the given sparse array to this sparse array, starting at a + particular index. Existing values are overwritten. + + The sparse array to copy. + The zero-based index at which copying begins. + + + + Represents the built-in javascript Boolean object. + + + + + Creates a new Boolean object. + + The next object in the prototype chain. + + + + Called when the Boolean object is invoked like a function, e.g. var x = Boolean("5"). + Converts the given argument into a boolean value (not a Boolean object). + + + + + Creates a new Boolean instance and initializes it to the given value. + + The value to initialize to. Defaults to false. + + + + Represents an instance of the JavaScript Boolean object. + + + + + Creates a new boolean instance. + + The next object in the prototype chain. + The value to initialize the instance with. + + + + Creates the Boolean prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + Gets the primitive value of this object. + + + + + Returns the underlying primitive value of the current object. + + The underlying primitive value of the current object. + + + + Returns a string representing this object. + + A string representing this object. + + + + Represents the instance portion of a CLR type that cannot be exposed directly but instead + must be wrapped. + + + + + Retrieves a ClrInstanceTypeWrapper object from the cache, if possible, or creates it + otherwise. + + The associated script engine. + The CLR type to wrap. + + + + Creates a new ClrInstanceTypeWrapper object. + + The associated script engine. + The CLR type to wrap. + + + + Returns an object instance to serve as the next object in the prototype chain. + + The associated script engine. + The CLR type to wrap. + The next object in the prototype chain. + + + + Gets the .NET type this object represents. + + + + + Returns a textual representation of this object. + + A textual representation of this object. + + + + Represents a non-native CLR object instance. + + + + + Creates a new ClrInstanceWrapper object. + + The associated script engine. + The CLR object instance to wrap. + + + + Returns an object instance to serve as the next object in the prototype chain. + + The associated script engine. + The CLR object instance to wrap. + The next object in the prototype chain. + + + + Creates an instance of ClrInstanceWrapper or ArrayInstance based on object type. + + The associated script engine. + The CLR object instance to wrap. + + + + Gets the .NET instance this object represents. + + + + + Returns a textual representation of this object. + + A textual representation of this object. + + + + Represents the static portion of a CLR type that cannot be exposed directly but instead + must be wrapped. + + + + + Retrieves a ClrStaticTypeWrapper object from the cache, if possible, or creates it + otherwise. + + The associated script engine. + The CLR type to wrap. + + + + Creates a new ClrStaticTypeWrapper object. + + The associated script engine. + The CLR type to wrap. + + + + Returns an object instance to serve as the next object in the prototype chain. + + The associated script engine. + The CLR type to wrap. + The next object in the prototype chain. + + + + Gets the .NET type this object represents. + + + + + Calls this function, passing in the given "this" value and zero or more arguments. + + The value of the "this" keyword within the function. + An array of argument values. + The value that was returned from the function. + + + + Creates an object, using this function as the constructor. + + The value of 'new.target'. + An array of argument values. + The object that was created. + + + + Populates the given object with properties, field and methods based on the given .NET + type. + + The object to populate. + The .NET type to search for methods. + BindingFlags.Static to populate static methods; + BindingFlags.Instance to populate instance methods. + + + + Returns a textual representation of this object. + + A textual representation of this object. + + + + Represents the built-in javascript Date object. + + + + + Creates a new Date object. + + The next object in the prototype chain. + + + + Called when the Date object is invoked like a function, e.g. var x = Date(). + Returns a string representing the current time. + + + + + Creates a new Date object and sets its value to the current time. + + + + + Creates a new Date object from a millisecond value. + + The number of milliseconds since 1 January 1970 00:00:00 UTC. + + + + Creates a new Date object from a string. + + A string representing a date, expressed in RFC 1123 format. + + + + Creates a new Date object from various date components, expressed in local time. + + The full year. + The month as an integer between 0 and 11 (january to december). + The day of the month, from 1 to 31. Defaults to 1. + The number of hours since midnight, from 0 to 23. Defaults to 0. + The number of minutes, from 0 to 59. Defaults to 0. + The number of seconds, from 0 to 59. Defaults to 0. + The number of milliseconds, from 0 to 999. Defaults to 0. + + If any of the parameters are out of range, then the other values are modified accordingly. + + + + + Creates a new Date object from various date components, expressed in local time. + + An array containing date components, in the following order: + year, month, day, hour, minute, second and millisecond. + + If any of the parameters are out of range, then the other values are modified accordingly. + + + + + Returns the current date and time as the number of milliseconds elapsed since January 1, + 1970, 00:00:00 UTC. + + The current date and time as the number of milliseconds elapsed since January 1, + 1970, 00:00:00 UTC. + + + + Given the components of a UTC date, returns the number of milliseconds since January 1, + 1970, 00:00:00 UTC to that date. + + The full year. + The month as an integer between 0 and 11 (january to december). + The day of the month, from 1 to 31. Defaults to 1. + The number of hours since midnight, from 0 to 23. Defaults to 0. + The number of minutes, from 0 to 59. Defaults to 0. + The number of seconds, from 0 to 59. Defaults to 0. + The number of milliseconds, from 0 to 999. Defaults to 0. + The number of milliseconds since January 1, 1970, 00:00:00 UTC to the given + date. + + This method differs from the Date constructor in two ways: + 1. The date components are specified in UTC time rather than local time. + 2. A number is returned instead of a Date instance. + + If any of the parameters are out of range, then the other values are modified accordingly. + + + + + Parses a string representation of a date, and returns the number of milliseconds since + January 1, 1970, 00:00:00 UTC. + + A string representing a date, expressed in RFC 1123 format. + + + + The prototype for the Date object. + + + + + The underlying DateTime value. + + + + + A DateTime that represents an invalid date. + + + + + Creates a new Date instance and initializes it to the current time. + + The next object in the prototype chain. + + + + Creates a new Date instance from the given date value. + + The next object in the prototype chain. + The number of milliseconds since January 1, 1970, 00:00:00 UTC. + + + + Creates a new Date instance from the given date string. + + The next object in the prototype chain. + A string representing a date, expressed in RFC 1123 format. + + + + Creates a new Date instance from various date components, expressed in local time. + + The next object in the prototype chain. + The full year. + The month as an integer between 0 and 11 (january to december). + The day of the month, from 1 to 31. Defaults to 1. + The number of hours since midnight, from 0 to 23. Defaults to 0. + The number of minutes, from 0 to 59. Defaults to 0. + The number of seconds, from 0 to 59. Defaults to 0. + The number of milliseconds, from 0 to 999. Defaults to 0. + + If any of the parameters are out of range, then the other values are modified accordingly. + + + + + Creates a new Date instance from the given date. + + The next object in the prototype chain. + The date to set the instance value to. + + + + Creates the Date prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + Gets the date represented by this object in standard .NET DateTime format. + + + + + Gets the date represented by this object as the number of milliseconds elapsed since + January 1, 1970, 00:00:00 UTC. + + + + + Gets a value indicating whether the date instance is valid. A date can be invalid if + NaN is passed to any of the constructor parameters. + + + + + Returns the year component of this date, according to local time. + + The year component of this date, according to local time. + + + + Returns the year component of this date as an offset from 1900, according to local time. + + The year component of this date as an offset from 1900, according to local time. + + + + Returns the month component of this date, according to local time. + + The month component (0-11) of this date, according to local time. + + + + Returns the day of the month component of this date, according to local time. + + The day of the month component (1-31) of this date, according to local time. + + + + Returns the day of the week component of this date, according to local time. + + The day of the week component (0-6) of this date, according to local time. + + + + Returns the hour component of this date, according to local time. + + The hour component (0-23) of this date, according to local time. + + + + Returns the minute component of this date, according to local time. + + The minute component (0-59) of this date, according to local time. + + + + Returns the seconds component of this date, according to local time. + + The seconds component (0-59) of this date, according to local time. + + + + Returns the millisecond component of this date, according to local time. + + The millisecond component (0-999) of this date, according to local time. + + + + Returns the number of milliseconds since January 1, 1970, 00:00:00 UTC. + + The number of milliseconds since January 1, 1970, 00:00:00 UTC. + + + + Returns the time-zone offset in minutes for the current locale. + + The time-zone offset in minutes for the current locale. + + + + Returns the year component of this date, according to universal time. + + The year component of this date, according to universal time. + + + + Returns the month component of this date, according to universal time. + + The month component (0-11) of this date, according to universal time. + + + + Returns the day of the month component of this date, according to universal time. + + The day of the month component (1-31) of this date, according to universal time. + + + + Returns the day of the week component of this date, according to universal time. + + The day of the week component (0-6) of this date, according to universal time. + + + + Returns the hour component of this date, according to universal time. + + The hour component (0-23) of this date, according to universal time. + + + + Returns the minute component of this date, according to universal time. + + The minute component (0-59) of this date, according to universal time. + + + + Returns the seconds component of this date, according to universal time. + + The seconds component (0-59) of this date, according to universal time. + + + + Returns the millisecond component of this date, according to universal time. + + The millisecond component (0-999) of this date, according to universal time. + + + + Sets the full year (4 digits for 4-digit years) of this date, according to local time. + + The 4 digit year. + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the full year (4 digits for 4-digit years) of this date, according to local time. + + The 4 digit year. + The month (0-11). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the full year (4 digits for 4-digit years) of this date, according to local time. + + The 4 digit year. + The month (0-11). + The day of the month (1-31). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the year of this date, according to local time. + + The year. Numbers less than 100 will be assumed to be + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the month of this date, according to local time. + + The month (0-11). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the month of this date, according to local time. + + The month (0-11). + The day of the month (1-31). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the day of this date, according to local time. + + The day of the month (1-31). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the hours component of this date, according to local time. + + The number of hours since midnight (0-23). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the hours component of this date, according to local time. + + The number of hours since midnight (0-23). + The number of minutes since the hour (0-59). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the hours component of this date, according to local time. + + The number of hours since midnight (0-23). + The number of minutes since the hour (0-59). + The number of seconds since the minute (0-59). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the hours component of this date, according to local time. + + The number of hours since midnight (0-23). + The number of minutes since the hour (0-59). + The number of seconds since the minute (0-59). + The number of milliseconds since the second (0-999). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the minutes component of this date, according to local time. + + The number of minutes since the hour (0-59). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the minutes component of this date, according to local time. + + The number of minutes since the hour (0-59). + The number of seconds since the minute (0-59). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the minutes component of this date, according to local time. + + The number of minutes since the hour (0-59). + The number of seconds since the minute (0-59). + The number of milliseconds since the second (0-999). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the seconds component of this date, according to local time. + + The number of seconds since the minute (0-59). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the seconds component of this date, according to local time. + + The number of seconds since the minute (0-59). + The number of milliseconds since the second (0-999). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the milliseconds component of this date, according to local time. + + The number of milliseconds since the second (0-999). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the full year (4 digits for 4-digit years) of this date, according to universal time. + + The 4 digit year. + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the full year (4 digits for 4-digit years) of this date, according to universal time. + + The 4 digit year. + The month (0-11). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the full year (4 digits for 4-digit years) of this date, according to universal time. + + The 4 digit year. + The month (0-11). + The day of the month (1-31). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the month of this date, according to universal time. + + The month (0-11). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the month of this date, according to universal time. + + The month (0-11). + The day of the month (1-31). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the day of this date, according to universal time. + + The day of the month (1-31). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the hours component of this date, according to universal time. + + The number of hours since midnight (0-23). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the hours component of this date, according to universal time. + + The number of hours since midnight (0-23). + The number of minutes since the hour (0-59). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the hours component of this date, according to universal time. + + The number of hours since midnight (0-23). + The number of minutes since the hour (0-59). + The number of seconds since the minute (0-59). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the hours component of this date, according to universal time. + + The number of hours since midnight (0-23). + The number of minutes since the hour (0-59). + The number of seconds since the minute (0-59). + The number of milliseconds since the second (0-999). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the minutes component of this date, according to universal time. + + The number of minutes since the hour (0-59). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the minutes component of this date, according to universal time. + + The number of minutes since the hour (0-59). + The number of seconds since the minute (0-59). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the minutes component of this date, according to universal time. + + The number of minutes since the hour (0-59). + The number of seconds since the minute (0-59). + The number of milliseconds since the second (0-999). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the seconds component of this date, according to universal time. + + The number of seconds since the minute (0-59). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the seconds component of this date, according to universal time. + + The number of seconds since the minute (0-59). + The number of milliseconds since the second (0-999). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the milliseconds component of this date, according to universal time. + + The number of milliseconds since the second (0-999). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the date and time value of ths date. + + The number of milliseconds since January 1, 1970, 00:00:00 UTC. + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Returns the date as a string. + + The date as a string. + + + + Returns the date as a string using GMT (Greenwich Mean Time). + + The date as a string. + + + + Returns the date as a string using GMT (Greenwich Mean Time). + + The date as a string. + + + + Used by the JSON.stringify to transform objects prior to serialization. + + The object that is being operated on. + Unused. + The date as a serializable string. + + + + Returns the date as a string using the current locale settings. + + + + + + Returns the date and time as a string using the current locale settings. + + + + + + Returns the time as a string using the current locale settings. + + + + + + Returns a string representing the date and time. + + The object that is being operated on. + A string representing the date and time. + + + + Returns the time as a string. + + + + + + Returns the date as a string using UTC (universal time). + + + + + + Returns the primitive value of this object. + + The primitive value of this object. + + + + Returns a primitive value that represents the current object. Used by the addition and + equality operators. + + The current script environment. + The object to operate on. + Specifies the conversion behaviour. Must be "default", "string" or "number". + + + + + Returns the current date and time as the number of milliseconds elapsed since January 1, + 1970, 00:00:00 UTC. + + The current date and time as the number of milliseconds elapsed since January 1, + 1970, 00:00:00 UTC. + + + + Given the components of a UTC date, returns the number of milliseconds since January 1, + 1970, 00:00:00 UTC to that date. + + The full year. + The month as an integer between 0 and 11 (january to december). + The day of the month, from 1 to 31. Defaults to 1. + The number of hours since midnight, from 0 to 23. Defaults to 0. + The number of minutes, from 0 to 59. Defaults to 0. + The number of seconds, from 0 to 59. Defaults to 0. + The number of milliseconds, from 0 to 999. Defaults to 0. + The number of milliseconds since January 1, 1970, 00:00:00 UTC to the given + date. + + This method differs from the Date constructor in two ways: + 1. The date components are specified in UTC time rather than local time. + 2. A number is returned instead of a Date instance. + + If any of the parameters are out of range, then the other values are modified accordingly. + + + + + Parses a string representation of a date, and returns the number of milliseconds since + January 1, 1970, 00:00:00 UTC. + + A string representing a date, expressed in RFC 1123 format. + + + + Gets a single component of this date. + + The date component to extract. + Indicates whether to retrieve the component in local + or universal time. + The date component value, or NaN if the date is invalid. + + + + Sets one or more components of this date. + + The first date component to set. + Indicates whether to set the component(s) in local + or universal time. + One or more date component values. + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Converts a .NET date into a javascript date. + + The .NET date. + The number of milliseconds since January 1, 1970, 00:00:00 UTC + + + + Converts a javascript date into a .NET date. + + The number of milliseconds since January 1, 1970, 00:00:00 UTC. + The equivalent .NET date. + + + + Given the components of a date, returns the equivalent .NET date. + + The full year. + The month as an integer between 0 and 11 (january to december). + The day of the month, from 1 to 31. Defaults to 1. + The number of hours since midnight, from 0 to 23. Defaults to 0. + The number of minutes, from 0 to 59. Defaults to 0. + The number of seconds, from 0 to 59. Defaults to 0. + The number of milliseconds, from 0 to 999. Defaults to 0. + Indicates whether the components are in UTC or local time. + The equivalent .NET date. + + + + Gets the current time and date. + + The current time and date. + + + + Returns a string of the form "GMT+1200 (New Zealand Standard Time)". + + The date to get the time zone information from. + A string of the form "GMT+1200 (New Zealand Standard Time)". + + + + Parses a javascript date string. + + + + + Parses a javascript date string. + + The string to parse as a date. + A date. + + + + Parses an unstructured javascript date string. + + The string to parse as a date. + A date. + + + + Converts a timezone string to a timezone offset. + + The timezone string e.g. "+1300", "+13", "-1". + The timezone offset, in minutes. e.g. +1200 will return 12*60=700. + Indicates whether parsing was successful. + + + + Constructs a HashSet containing the names of days of the week. + + + + + Constructs a dictionary containing the names of all the months and a mapping to the + number of the month (1-12). + + + + + Constructs a dictionary containing the names of all the time zones and a mapping to the + time zone offset (in hours). + + + + + Represents a constructor for one of the error types: Error, RangeError, SyntaxError, etc. + + + + + Creates a new derived error function. + + The next object in the prototype chain. + The type of error, e.g. Error, RangeError, etc. + + + + Called when the Error object is invoked like a function, e.g. var x = Error("oh no"). + Creates a new derived error instance with the given message. + + A description of the error. + + + + Creates a new derived error instance with the given message. + + A description of the error. + + + + Represents the base class of all the javascript errors. + + + + + Creates a new Error instance with the given message. + + The next object in the prototype chain. + The initial value of the message property. Pass null to + avoid creating this property. + + + + Creates the Error prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + The type of error, e.g. Error, RangeError, etc. + + + + Determine the prototype for the given error type. + + The script engine associated with this object. + The type of error, e.g. Error, RangeError, etc. + The prototype. + + + + Gets the name for the type of error. + + + + + Gets a human-readable description of the error. + + + + + Gets the stack trace. Note that this is populated when the object is thrown, NOT when + it is initialized. + + + + + Sets the stack trace information. + + The path of the javascript source file that is currently executing. + The name of the currently executing function. + The line number of the statement that is currently executing. + + + + Returns a string representing the current object. + + The current script environment. + The object that is being operated on. + A string representing the current object. + + + + Used when creating an error to specify the specific type of error. + + + + + Represents a generic error. + + + + + Indicates a value that is not in the set or range of allowable values. + + + + + Indicates the actual type of an operand is different than the expected type. + + + + + Indicates that a parsing error has occurred. + + + + + Indicates that one of the global URI handling functions was used in a way that is incompatible with its definition. + + + + + Not used. + + + + + Indicate that an invalid reference value has been detected. + + + + + Represents a set of commands for working with the standard console. This class is + non-standard - it is based on the Firebug console API + (http://getfirebug.com/wiki/index.php/Console_API). + + + + + Creates a new FirebugConsole instance. + + The associated script engine. + + + + Gets or sets the console to output to. + + + + + Logs a message to the console. The objects provided will be converted to strings then + joined together in a space separated line. The first parameter can be a string + containing the following patterns: + %s String + %d, %i Integer + %f Floating point number + + The items to format. + + + + Logs a message to the console. The objects provided will be converted to strings then + joined together in a space separated line. The first parameter can be a string + containing the following patterns: + %s String + %d, %i Integer + %f Floating point number + + The items to format. + + + + Logs a message to the console using a style suggesting informational content. The + objects provided will be converted to strings then joined together in a space separated + line. The first parameter can be a string containing the following patterns: + %s String + %d, %i Integer + %f Floating point number + + The items to format. + + + + Logs a message to the console using a style suggesting a warning. The objects provided + will be converted to strings then joined together in a space separated line. The first + parameter can be a string containing the following patterns: + %s String + %d, %i Integer + %f Floating point number + + The items to format. + + + + Logs a message to the console using a style suggesting an error. The objects provided + will be converted to strings then joined together in a space separated line. The + first parameter can be a string containing the following patterns: + %s String + %d, %i Integer + %f Floating point number + + The items to format. + + + + Tests that an expression is true. If not, it will write a message to the console. + + The expression to test. + The items to format. + + + + Clears the console. + + + + + Writes a message to the console and opens a nested block to indent all future messages + sent to the console. Call console.groupEnd() to close the block. + + The items to format. + + + + Writes a message to the console and opens a nested block to indent all future messages + sent to the console. Call console.groupEnd() to close the block. + + The items to format. + + + + Closes the most recently opened block created by a call to console.group(). + + + + + Creates a new timer under the given name. Call console.timeEnd(name) with the same name + to stop the timer and print the time elapsed. + + The name of the time to create. + + + + Stops a timer created by a call to console.time(name) and writes the time elapsed. + + The name of the timer to stop. + + + + Logs a message to the console. The objects provided will be converted to strings then + joined together in a space separated line. The first parameter can be a string + containing the following patterns: + %s String + %d, %i Integer + %f Floating point number + + The style of the message (this determines the icon and text + color). + The items to format. + + + + Formats a message. The objects provided will be converted to strings then + joined together in a space separated line. The first parameter can be a string + containing the following patterns: + %s String + %d, %i Integer + %f Floating point number + %o Object hyperlink + + The items to format. + A formatted string. + + + + Formats a message. The objects provided will be converted to strings then + joined together in a space separated line. The first parameter can be a string + containing the following patterns: + %s String + %d, %i Integer + %f Floating point number + %o Object hyperlink + + The items to format. + An array containing formatted strings interspersed with objects. + + + + Indicates the level of severity. + + + + + Log text, without any indication of the severity. + + + + + Log informational text. + + + + + Log warnings. + + + + + Log errors. + + + + + Represents the target of any Firebug console commands. + + + + + Logs a message to the console. + + The style of the message (this determines the icon and text + color). + The objects to output to the console. These can be strings or + ObjectInstances. + + + + Clears the console. + + + + + Starts grouping messages together. + + The title for the group. + true if subsequent messages should be hidden by default. + + + + Ends the most recently started group. + + + + + Represents an implementation of the Firebug API using the standard console. + + + + + Gets or sets the number of spaces to output before writing any text to the console. + + + + + Gets or sets the number of spaces to add to the identation when group() is called. + + + + + Logs a message to the console. + + A style which influences the icon and text color. + The objects to output to the console. These can be strings or + ObjectInstances. + + + + Clears the console. + + + + + Starts grouping messages together. + + The title for the group. + true if subsequent messages should be hidden by default. + + + + Ends the most recently started group. + + + + + Represents an arguments object. + + + + + Creates a new Arguments instance. + + The next object in the prototype chain. + The function that was called. + The bindings to allow modification. + The argument values that were passed to the function. + + + + Used to retrieve the value of an argument. + + The script engine, this value, etc. + The arguments that were passed to the function. + The result of calling the method. + + + + Used to set the value of an argument. + + The script engine, this value, etc. + The arguments that were passed to the function. + The result of calling the method. + + + + Deletes the property with the given array index. + + The array index of the property to delete. + true to throw an exception if the property could not + be set because the property was marked as non-configurable. + true if the property was successfully deleted, or if the property did + not exist; false if the property was marked as non-configurable and + was false. + + + + Returns an iterator that iterates over the argument values. + + An iterator for the arguments instance. + + + + Represents a function that has bound arguments. + + + + + Creates a new instance of a user-defined function. + + The function that was bound. + The value of the "this" parameter when the target function is called. + Zero or more bound argument values. + + + + Gets the function that is being bound. + + + + + Gets the value of the "this" parameter when the target function is called. + + + + + Gets an array of zero or more bound argument values. + + + + + Determines whether the given object inherits from this function. More precisely, it + checks whether the prototype chain of the object contains the prototype property of + this function. Used by the "instanceof" operator. + + The instance to check. + true if the object inherits from this function; false + otherwise. + + + + Calls this function, passing in the given "this" value and zero or more arguments. + + The value of the "this" keyword within the function. + An array of argument values to pass to the function. + The value that was returned from the function. + + + + Creates an object, using this function as the constructor. + + The value of 'new.target'. + An array of argument values to pass to the function. + The object that was created. + + + + Returns a string representing this object. + + A string representing this object. + + + + Represents a JS class, which is really just a special type of function. Classes cannot be + called directly, but they can be instantiated using the 'new' operator. + + + + + Creates a new instance of a user-defined class. + + The next object in the prototype chain. + The name of the class. Can be null if none were supplied. + The value of the 'prototype' property. + A function that represents the constructor, if the class has + one, or null otherwise. + + A class that doesn't extend looks like this: + new ClassFunction(engine.Function.InstancePrototype, name, engine.Object.Construct(), constructor) + + A class that extends A looks like this: + new ClassFunction(A, name, ObjectInstance.CreateRawObject(A.InstancePrototype), constructor) + + A class that extends null looks like this: + new ClassFunction(engine.Function.InstancePrototype, name, ObjectInstance.CreateRawObject(null), constructor) + + + + + Calls this function, passing in the given "this" value and zero or more arguments. + + The value of the "this" keyword within the function. + An array of argument values to pass to the function. + The value that was returned from the function. + + + + Creates an object, using this function as the constructor. + + The value of 'new.target'. + An array of argument values. + The object that was created. + + + + Returns a string representing this object. + + A string representing this object. + + + + Represents a JavaScript function implemented by one or more .NET methods. + + + + + Creates a new instance of a built-in constructor function. + + The next object in the prototype chain. + The name of the function. + + + + + Creates a new instance of a function which calls the given delegate. + + The next object in the prototype chain. + The delegate to call. + The name of the function. Pass null to use the name of the + delegate for the function name. + The "typical" number of arguments expected by the function. Pass + -1 to use the number of arguments expected by the delegate. + + + + Creates a new instance of a function which calls one or more provided methods. + + The next object in the prototype chain. + An enumerable collection of methods that logically comprise a + single method group. + The name of the function. Pass null to use the name of the + provided methods for the function name (in this case all the provided methods must have + the same name). + The "typical" number of arguments expected by the function. Pass + -1 to use the maximum of arguments expected by any of the provided methods. + + + + Creates a new instance of a function which calls the given binder. + + The next object in the prototype chain. + An object representing a collection of methods to bind to. + + + + Calls this function, passing in the given "this" value and zero or more arguments. + + The value of the "this" keyword within the function. + An array of argument values. + The value that was returned from the function. + + + + Creates an object, using this function as the constructor. + + The value of 'new.target'. + An array of argument values. + The object that was created. + + + + A binder that merely returns undefined. + + + + + Creates a new EmptyBinder instance. + + + + + Gets the name of the target methods. + + + + + Gets the full name of the target methods, including the type name. + + + + + Generates a method that does type conversion and calls the bound method. + + The ILGenerator used to output the body of the method. + The number of arguments that will be passed to the delegate. + A delegate that does type conversion and calls the method represented by this + object. + + + + Represents a function that is implemented with a .NET static method. + Faster, but less flexible version of ClrFunction. Now used by all the built-in constructors and functions. + + + + + Creates a function which calls a .NET method, with no name or length. + + The next object in the prototype chain. + The delegate to call when calling the JS method. + + + + Creates a new instance of a function which calls a .NET method. The prototype of the + new function is set to the default function prototype. + + The script engine. + The name of the function. + The "typical" number of arguments expected by the function. + The delegate to call when calling the JS method. + + + + Creates a new instance of a function which calls a .NET method. + + The next object in the prototype chain. + The name of the function. + The "typical" number of arguments expected by the function. + The delegate to call when calling the JS method. + + + + Creates a new constructor function. + + The next object in the prototype chain. + The delegate to call when calling the JS method as a constructor. + The delegate to call when function is called. + + + + Adds properties needed by the function to the list of properties. + + The list of properties to add to. + The name of the function. + The "typical" number of arguments expected by the function. + The value of the "prototype" property. + + + + Creates a new constructor function. + + The next object in the prototype chain. + The name of the function. + The "typical" number of arguments expected by the function. + The value of the "prototype" property. + The delegate to call when calling the JS method as a constructor. + The delegate to call when function is called. + + + + Calls this function, passing in the given "this" value and zero or more arguments. + + The value of the "this" keyword within the function. + An array of argument values. + The value that was returned from the function. + + + + Indicates whether the 'new' operator can be used on this function. + Will be false for built-in functions like Math.max. + + + + + Creates an object, using this function as the constructor. + + The value of 'new.target'. + An array of argument values. + The object that was created. + + + + Represents the built-in JavaScript Function object. + + + + + Creates a new Function object. + + The next object in the prototype chain. + The prototype for instances created by this function. + + + + Called when the Function object is invoked like a function, e.g. var x = Function("5"). + Creates a new function instance. + + The argument names plus the function body. + A new function instance. + + + + Creates a new function instance. + + The argument names plus the function body. + A new function instance. + + + + Represents a JavaScript function. + + + + + Creates a new instance of a built-in function object, with the default Function + prototype. + + The associated script engine. + + + + Creates a new instance of a built-in function object. + + The next object in the prototype chain. + + + + Creates a new instance of a built-in function object. + + The associated script engine. + The next object in the prototype chain. Can be null. + + + + Initializes the prototype properties. + + The object to set the properties on. + A reference to the constructor that owns the prototype. + + + + Gets the prototype of objects constructed using this function. Equivalent to + the Function.prototype property. + + + + + Gets the name of the function. + + + + + Gets the number of arguments expected by the function. + + + + + Determines whether the given object inherits from this function. More precisely, it + checks whether the prototype chain of the object contains the prototype property of + this function. Used by the "instanceof" operator. + + The instance to check. + true if the object inherits from this function; false + otherwise. + + + + Calls this function, passing in the given "this" value and zero or more arguments. + + The value of the "this" keyword within the function. + An array of argument values. + The value that was returned from the function. + + + + Calls this function, passing in the given "this" value and zero or more arguments. + + The name of the caller function. + The value of the "this" keyword within the function. + An array of argument values. + The value that was returned from the function. + + + + Calls this function, passing in the given "this" value and zero or more arguments. + + The path of the javascript source file that contains the caller. + The name of the caller function. + The line number of the statement that is calling this function. + The value of the "this" keyword within the function. + An array of argument values. + The value that was returned from the function. + + + + Indicates whether the 'new' operator can be used on this function. + Will be false for built-in functions like Math.max. + + + + + Creates an object, using this function as the constructor. + + The value of 'new.target'. + An array of argument values. + The object that was created. + + + + Creates an object, using this function as the constructor. + + The path of the javascript source file that contains the caller. + The name of the caller function. + The line number of the statement that is calling this function. + The value of 'new.target'. + An array of argument values. + The object that was created. + + + + Calls the function, passing in parameters from the given array. + + The value of this in the context of the function. + The arguments passed to the function, as an array. + The result from the function call. + + + + Calls the function. + + The value of this in the context of the function. + Any number of arguments that will be passed to the function. + The result from the function call. + + + + Creates a new function that, when called, calls this function with the given "this" + value and, optionally, one or more more arguments. + + The fixed value of "this". + Any number of fixed arguments values. + A new function. + + + + Returns a string representing this object. + + A string representing this object. + + + + Returns a string representing this object. + + A string representing this object. + + + + Represents a JavaScript function that throws a type error. + + + + + Creates a new ThrowTypeErrorFunction instance. + + The next object in the prototype chain. + + + + Creates a new ThrowTypeErrorFunction instance. + + The next object in the prototype chain. + The TypeError message. + + + + Calls this function, passing in the given "this" value and zero or more arguments. + + The value of the "this" keyword within the function. + An array of argument values to pass to the function. + The value that was returned from the function. + + + + Represents a JavaScript function implemented in javascript. + + + + + Creates a new instance of a user-defined function. + + The next object in the prototype chain. + The name of the function. + A comma-separated list of arguments. + The source code for the body of the function. + This is used by new Function(). + + + + Creates a new instance of a user-defined function. + + The next object in the prototype chain. + The name of the function. + The names of the arguments. + The scope at the point the function is declared. + The source code for the function body. + A delegate which represents the body of the function. + true if the function body is strict mode; false otherwise. + This is used by arguments. + + + + Creates a new instance of a user-defined function. + + The next object in the prototype chain. + The name of the function. + The names of the arguments. + The scope at the point the function is declared. + The source code for the function body. + A delegate which represents the body of the function plus any dependencies. + true if the function body is strict mode; false otherwise. + A reference to the containing class prototype or object literal (or null). + This is used by functions declared in JavaScript code (including getters and setters). + + + + Initializes the object properties. + + The name of the function. + The expected number of arguments. + + + + A comma-separated list of arguments. + + + + + Gets a list containing the names of the function arguments, in order of definition. + This list can contain duplicate names. + + + + + Gets a value that indicates whether the function was declared within strict mode code + -or- the function contains a strict mode directive within the function body. + + + + + Gets the scope at the point the function was declared. + + + + + Gets the source code for the body of the function. + + + + + Gets the body of the method in the form of disassembled IL code. Will be null + unless was set to true. + + + + + Gets a reference to the generated method. For internal use only. + + + + + Gets a reference to the generated method. For internal use only. + + + + + A reference to the containing class prototype or object literal (or null). Used + by the 'super' property accessor. + + + + + Calls this function, passing in the given "this" value and zero or more arguments. + + The value of the "this" keyword within the function. + An array of argument values to pass to the function. + The value that was returned from the function. + + + + Creates an object, using this function as the constructor. + + The value of 'new.target'. + An array of argument values. + The object that was created. + + + + Returns a string representing this object. + + A string representing this object. + + + + Represents functions and properties within the global scope. + + + + + Creates a new Global object. + + The next object in the prototype chain. + + + + Retrieves a list of properties to apply to the global object. + + + + + Decodes a string that was encoded with the encodeURI function. + + The current script environment. + The associated script engine. + The string, as it was before encoding. + + + + Decodes a string that was encoded with the decodeURIComponent function. + + The associated script engine. + The string to decode. + The string, as it was before encoding. + + + + Encodes a string containing a Uniform Resource Identifier (URI). + + The associated script engine. + The string to encode. + A copy of the given URI with the special characters encoded. + + + + Encodes a string containing a portion of a Uniform Resource Identifier (URI). + + The associated script engine. + The string to encode. + A copy of the given URI with the special characters encoded. + + + + Encodes a string using an encoding similar to that used in URLs. + + The string to encode. + A copy of the given string with the special characters encoded. + + + + Evaluates the given javascript source code and returns the result. + + The associated script engine. + The source code to evaluate. + The value of the last statement that was executed, or undefined if + there were no executed statements. + + + + Evaluates the given javascript source code and returns the result. + + The associated script engine. + The source code to evaluate. + The containing scope. + The value of the "this" keyword in the containing scope. + Indicates whether the eval statement is being called from + strict mode code. + The value of the last statement that was executed, or undefined if + there were no executed statements. + + + + Determines whether the given number is finite. + + The number to test. + false if the number is NaN or positive or negative infinity, + true otherwise. + + + + Determines whether the given number is NaN. + + The number to test. + true if the number is NaN, false otherwise. + + + + Decodes a string that has been encoded using escape(). + + The string to decode. + A copy of the given string with the escape sequences decoded. + + + + Decodes a string containing a URI or a portion of a URI. + + The script engine used to create the error objects. + The string to decode. + A string containing the set of characters that should not + be escaped. Alphanumeric characters should not be included. + A copy of the given string with the escape sequences decoded. + + + + Encodes a string containing a URI or a portion of a URI. + + The associated script engine. + The string to encode. + An array containing the set of characters that should not + be escaped. + A copy of the given URI with the special characters encoded. + + + + Reads an integer value using the given reader. + + The reader to read characters from. + Upon returning, contains the number of digits that were read. + The numeric value, or double.NaN if no number was present. + + + + Determines if the given character is whitespace or a line terminator. + + The unicode code point for the character. + true if the character is whitespace or a line terminator; false + otherwise. + + + + Parses a hexidecimal number from within a string. + + The string containing the hexidecimal number. + The start index of the hexidecimal number. + The number of characters in the hexidecimal number. + The numeric value of the hexidecimal number, or -1 if the number + is not valid. + + + + Creates a 128 entry lookup table for the characters in the given string. + + The characters to include in the set. + An array containing true for each character in the set. + + + + Represents a general iterator. + + + + + Creates a new iterator. + + The script environment. + The enumerable to iterate over. + + + + Creates the array iterator prototype object. + + The script environment. + + + + The tag value that is used by the base implementation of toString(). + + + + + Returns this iterator. + + An iterator. + + + + Moves the iterator to the next element in the array. + + An object containing two properies: value and done. + + + + Converts JSON text into a series of tokens. + + + + + Creates a JSONLexer instance with the given source of text. + + The script engine used to create error objects. + A reader that will supply the JSON source text. + + + + Gets the reader that was supplied to the constructor. + + + + + Reads the next token from the reader. + + A token, or null if there are no more tokens. + + + + Reads an keyword token. + + The first character of the identifier. + An keyword token. + + + + Reads a numeric literal token. + + The first character of the token. + A numeric literal token. + + + + Reads an integer value. + + The initial value, derived from the first character. + The number of digits that were read from the stream. + The numeric value, or double.NaN if no number was present. + + + + Reads a string literal. + + The first character of the string literal. + A string literal. + + + + Reads a hexidecimal number with the given number of digits and turns it into a character. + + The character corresponding to the escape sequence, or the content that was read + from the input if a valid hex number was not read. + + + + Reads past whitespace. + + Always returns null. + + + + Determines if the given character is whitespace or a line terminator. + + The character to test. + true if the character is whitespace or a line terminator; false + otherwise. + + + + Determines if the given character is valid as a character of an identifier. + + The character to test. + true if the character is is valid as a character of an identifier; + false otherwise. + + + + Determines if the given character is valid as the first character of a numeric literal. + + The character to test. + true if the character is is valid as the first character of a numeric + literal; false otherwise. + + + + Determines if the given character is valid in a hexidecimal number. + + The character to test. + true if the given character is valid in a hexidecimal number; false + otherwise. + + + + Represents the built-in JSON object. + + + + + Creates a new JSON object. + + The next object in the prototype chain. + + + + Parses the JSON source text and transforms it into a value. + + The current script environment. + The JSON text to parse. + A function that will be called for each value. + The value of the JSON text. + + + + Serializes a value into a JSON string. + + The current script environment. + The value to serialize. + Either a function that can transform each value before it is + serialized, or an array of the names of the properties to serialize. + Either the number of spaces to use for indentation, or a string + that is used for indentation. + The JSON string representing the value. + + + + Converts a series of JSON tokens into a JSON object. + + + + + Creates a JSONParser instance with the given lexer supplying the tokens. + + The associated script engine. + The lexical analyser that provides the tokens. + + + + Gets or sets a function that can be used to transform values as they are being parsed. + + + + + Discards the current token and reads the next one. + + + + + Indicates that the next token is identical to the given one. Throws an exception if + this is not the case. Consumes the token. + + The expected token. + + + + Indicates that the next token should be an identifier. Throws an exception if this is + not the case. Consumes the token. + + The identifier name. + + + + Parses the JSON text (optionally applying the reviver function) and returns the resulting value. + + The result of parsing the JSON text. + + + + Parses a value. + + A JSON value. + + + + Parses an array literal (e.g. "[1, 2]"). + + A populated array. + + + + Parses an object literal (e.g. "{a: 5}"). + + A populated object. + + + + Converts a value into JSON text. + + + + + Creates a new JSONSerializer instance with the default options. + + The associated script engine. + + + + Gets or sets a function which can transform values before they are serialized. + + + + + Gets or sets a string to use for indentation. + + + + + Gets or sets a list of property names to be serialized. + + + + + Serializes a value into a JSON string. + + The value to serialize. + The JSON repesentation of the value, or null if passed an + unserializable value (like a function). + + + + Transforms the value stored in the given object using toJSON and/or the replacer function. + + The object containing the value. + The name of the property holding the value to transform. + The transformed value. + + + + Transforms the value stored in the given object using toJSON and/or the replacer function. + + The object containing the value. + The array index of the property holding the value to transform. + The transformed value. + + + + Serializes a value into a JSON string. Does not serialize "undefined", check for that + value before calling this method. + + The value to serialize. + The StringBuilder to write the JSON representation of the + value to. + + + + Adds double quote characters to the start and end of the given string and converts any + invalid characters into escape sequences. + + The string to quote. + The StringBuilder to write the quoted string to. + + + + Serializes an object into a JSON string. + + The object to serialize. + The StringBuilder to write the JSON representation of the + object to. + + + + Serializes an array into a JSON string. + + The array to serialize. + The StringBuilder to write the JSON representation of the + array to. + + + + The Map object is a simple key/value map. Any value (both objects and primitive values) may + be used as either a key or a value. + + + + + Creates a new map constructor. + + The next object in the prototype chain. + + + + A reference to the constructor function that is used to create derived objects. + + + + + Called when the Map object is invoked like a function, e.g. var x = Map(). + Throws an error. + + + + + Creates a new Map. + + iterable is an Array or other iterable object whose elements + are key-value pairs (2-element Arrays). Each key-value pair is added to the new Map. + null is treated as undefined. + A new Map object, either empty or initialised with the given values. + + + + The Map object is a simple key/value map. Any value (both objects and primitive values) may + be used as either a key or a value. + + + + + Creates a new Map instance. + + The next object in the prototype chain. + + + + Creates the Map prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + Called before a linked list node is deleted. + + + + + Gets the internal storage. Used by debugger decoration only. + + + + + The number of elements in the Map. + + + + + Removes all elements from a Map object. + + + + + Removes the specified element from a Map object. + + The key of the element to remove from the Map object. + true if an element in the Map object existed and has been removed, or + false if the element does not exist. + + + + Returns a new Iterator object that contains the [key, value] pairs for each element in + the Map object in insertion order. + + A new Iterator object. + + + + Executes a provided function once per each key/value pair in the Map object, in + insertion order. + + Function to execute for each element. + Value to use as this when executing callback. + + + + Returns a specified element from a Map object. + + The key of the element to return from the Map object. + The element associated with the specified key, or undefined if the key can't + be found in the Map object. + + + + Returns a boolean indicating whether an element with the specified key exists or not. + + The key of the element to test for presence in the Map object. + true if an element with the specified key exists in the Map object; + otherwise false. + + + + Returns a new Iterator object that contains the keys for each element in the Map object + in insertion order. + + A new Iterator object. + + + + Adds a new element with a specified key and value to a Map object. + + The key of the element to add to the Map object. + The value of the element to add to the Map object. + The Map object. + + + + Returns a new Iterator object that contains the values for each element in the Map + object in insertion order. + + A new Iterator object. + + + + Implements the SameValueZero comparison operation. + + + + + Represents an iteration over a Map. + + + + + Creates a new map iterator. + + The next object in the prototype chain. + The map to iterate over. + The linked list to iterate over. + The type of values to return. + + + + Creates the array iterator prototype object. + + The script environment. + + + + Called before a linked list node is deleted. + + The node that is being deleted. + + + + The tag value that is used by the base implementation of toString(). + + + + + Moves the iterator to the next element in the array. + + An object containing two properies: value and done. + + + + Gets wheter the end is reached. Used by debugger decoration only. + + + + + Gets current index. Used by debugger decoration only. + + + + + Gets what is iterated - key, value or both + + + + + Gets the iterated Map + + + + + Represents the built-in Math class that has mathematical constants and functions. + + + + + Creates a new Math object. + + The next object in the prototype chain. + + + + The mathematical constant E, approximately 2.718. + + + + + The natural logarithm of 2, approximately 0.693. + + + + + The natural logarithm of 10, approximately 2.303. + + + + + The base 2 logarithm of E, approximately 1.442. + + + + + The base 10 logarithm of E, approximately 0.434. + + + + + The ratio of the circumference of a circle to its diameter, approximately 3.14159. + + + + + The square root of 0.5, approximately 0.707. + + + + + The square root of 2, approximately 1.414. + + + + + Returns the absolute value of a number. + + The number to operate on. + The absolute value of the parameter. + + + + Returns the arccosine of a number. + + The number to operate on. + The arccosine of the parameter. If + is less than -1 or greater than 1, then NaN is + returned. + + + + Returns the arcsine of a number. + + The number to operate on. + The arcsine of the parameter. If + is less than -1 or greater than 1, then NaN is + returned. + + + + Returns the arctangent of a number. + + The number to operate on. + The arctangent of the parameter. If + is less than -1 or greater than 1, then NaN is + returned. + + + + Returns the counter-clockwise angle (in radians) from the X axis to the point (x,y). + + A numeric expression representing the cartesian x-coordinate. + A numeric expression representing the cartesian y-coordinate. + The angle (in radians) from the X axis to a point (x,y) (between -pi and pi). + + + + Returns the smallest integer greater than or equal to a number. + + The number to operate on. + The smallest integer greater than or equal to the + parameter. + + + + Returns the cosine of an angle. + + The angle to operate on. + The cosine of the parameter (between -1 and 1). + + + + Returns e (the base of natural logarithms) raised to the specified power. + + The exponent. + E (the base of natural logarithms) raised to the specified power. + + + + Returns the greatest integer less than or equal to a number. + + The number to operate on. + The greatest integer less than or equal to the parameter. + + + + Returns the natural logarithm of a number. + + The number to operate on. + The natural logarithm of the parameter. + + + + Returns the largest of zero or more numbers. + + The numbers to operate on. + The largest of zero or more numbers. If no arguments are provided, the + return value is equal to NEGATIVE_INFINITY. If any of the arguments cannot be + converted to a number, the return value is NaN. + + + + Returns the smallest of zero or more numbers. + + The numbers to operate on. + The smallest of zero or more numbers. If no arguments are provided, the + return value is equal to NEGATIVE_INFINITY. If any of the arguments cannot be + converted to a number, the return value is NaN. + + + + Returns the value of a base expression taken to a specified power. + + The base value of the expression. + The exponent value of the expression. + The value of the base expression taken to the specified power. + + + + Returns a pseudorandom number between 0 and 1. + + A pseudorandom number between 0 and 1. The pseudorandom number generated is + from 0 (inclusive) to 1 (exclusive), that is, the returned number can be zero, but it + will always be less than one. The random number generator is seeded automatically. + + + + + Returns the value of a number rounded to the nearest integer. + + The number to operate on. + The required number argument is the value to be rounded to the nearest + integer. For positive numbers, if the decimal portion of number is 0.5 or greater, + the return value is equal to the smallest integer greater than number. If the decimal + portion is less than 0.5, the return value is the largest integer less than or equal to + number. For negative numbers, if the decimal portion is exactly -0.5, the return value + is the smallest integer that is greater than the number. For example, Math.round(8.5) + returns 9, but Math.round(-8.5) returns -8. + + + + Returns the sine of an angle. + + The angle, in radians. + The sine of the parameter (between -1 and 1). + + + + Returns the square root of a number. + + The number to operate on. + The square root of the parameter. + + + + Returns the tangent of an angle. + + The angle, in radians. + The tangent of the parameter (between -1 and 1). + + + + Returns the base 10 logarithm of a number. + + The number to operate on. + The base 10 logarithm of the parameter. + + + + Returns the base 2 logarithm of a number. + + The number to operate on. + The base 2 logarithm of the parameter. + + + + Returns the natural logarithm (base E) of one plus a number. The result is calculated + in such a way that the result is accurate even if the number is close to zero. + + The number to operate on. + The natural logarithm (base E) of one plus the parameter. + + + + Returns E to the power of a number minus 1. The result is calculated in such a way + that the result is accurate even if the number is close to zero. + + The number to operate on. + E to the power of the parameter minus 1. + + + + Returns the hyperbolic cosine of a number. + + The number to operate on. + The hyperbolic cosine of the parameter. + + + + Returns the hyperbolic sine of a number. + + The number to operate on. + The hyperbolic sine of the parameter. + + + + Returns the hyperbolic tangent of a number. + + The number to operate on. + The hyperbolic tangent of the parameter. + + + + Returns the inverse hyperbolic cosine of a number. + + The number to operate on. + The inverse hyperbolic cosine of the parameter. + + + + Returns the inverse hyperbolic sine of a number. + + The number to operate on. + The inverse hyperbolic sine of the parameter. + + + + Returns the inverse hyperbolic tangent of a number. + + The number to operate on. + The inverse hyperbolic tangent of the parameter. + + + + Returns the square root of the sum of squares of the provided numbers. + + The numbers to operate on. + The square root of the sum of squares of . + + + + Returns the square root of the sum of squares of the provided numbers. + + The first number to operate on. + The second number to operate on. + The square root of the sum of squares of and + . + + + + Returns the integral part of a number, removing any fractional digits. + + The number to operate on. + The integral part of the parameter. + + + + Returns the sign of the x, indicating whether x is positive, negative or zero. + + The number to operate on. + The sign of the parameter. + + + + Returns the result of the 32-bit multiplication of the two parameters. + + The first value to multiply. + The second value to multiply. + The result of multiplying the two numbers as if they were 32-bit integers. + + + + Returns the result of converting the double precision number to the nearest single + precision equivalent. + + The number to operate on. + The result of converting the double precision number to the nearest single + precision equivalent. + + + + Converts the input value to an unsigned 32-bit integer, then returns the number of + leading zero bits. + + The number to operate on. + The number of leading zero bits, treating the input like an unsigned 32-bit + integer. + + + + Returns an approximation to the cube root of the input value. + + The number to operate on. + An approximation to the cube root of the input value. + + + + Represents the built-in javascript Number object. + + + + + Creates a new Number object. + + The next object in the prototype chain. + + + + Called when the Number object is invoked like a function, e.g. var x = Number("5"). + Returns zero. + + + + + Called when the Number object is invoked like a function, e.g. var x = Number("5"). + Converts the given argument into a number value (not a Number object). + + + + + Creates a new Number instance and initializes it to zero. + + + + + Creates a new Number instance and initializes it to the given value. + + The value to initialize to. + + + + The largest representable number, approximately 1.8e+308. + + + + + The smallest positive representable number, approximately 5e-324. + + + + + Special "not a number" value. + + + + + Special value representing negative infinity. + + + + + Special value representing positive infinity. + + + + + The difference between 1 and the smallest value greater than 1 that is representable as + a numeric value. + + + + + The maximum integer within the range of integers that can be represented exactly. + Outside the safe range multiple integers are mapped to a single value. + + + + + The minimum integer within the range of integers that can be represented exactly. + Outside the safe range multiple integers are mapped to a single value. + + + + + Determines whether the given number is finite. + + The number to test. + false if the number is NaN or positive or negative infinity, + true otherwise. false if the value is not a number. + + + + Determines whether the given number is NaN. + + The number to test. + true if the number is NaN, false otherwise. + + + + Determines whether the given number is an integer. + + The number to test. + true if the number is an integer, false otherwise. + + + + Determines whether the given number is within the "safe" integer range. + + The number to test. + true if the number is a safe integer, false otherwise. + + + + Parses the given string and returns the equivalent integer value. + + The associated script engine. + The string to parse. + The numeric base to use for parsing. Pass zero to use base 10 + except when the input string starts with '0' in which case base 16 or base 8 are used + instead (base 8 is only supported in compatibility mode). + The equivalent integer value of the given string. + Leading whitespace is ignored. Parsing continues until the first invalid + character, at which point parsing stops. No error is returned in this case. + + + + Parses the given string and returns the equivalent numeric value. + + The string to parse. + The equivalent numeric value of the given string. + Leading whitespace is ignored. Parsing continues until the first invalid + character, at which point parsing stops. No error is returned in this case. + + + + Represents an instance of the Number object. + + + None of the methods of the Number prototype are generic; they should throw TypeError + if the this value is not a Number object or a number primitive. + + + + + The primitive value. + + + + + Creates a new Number instance and initializes it to the given value. + + The next object in the prototype chain. + The value to initialize to. + + + + Creates the Number prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + Gets the primitive value of the number. + + + + + Returns a string representing a number represented in exponential notation. + + Number of digits after the decimal point. Must be in the + range 0 – 20, inclusive. Defaults to the number of digits necessary to specify the + number. + A string representation of a number in exponential notation. The string + contains one digit before the significand's decimal point, and may contain + fractionDigits digits after it. + + + + Returns a string representing a number in fixed-point notation. + + Number of digits after the decimal point. Must be in the + range 0 – 20, inclusive. + A string representation of a number in fixed-point notation. The string + contains one digit before the significand's decimal point, and must contain + fractionDigits digits after it. + If fractionDigits is not supplied or undefined, the toFixed method assumes the value + is zero. + + + + Returns a string containing a locale-dependant version of the number. + + A string containing a locale-dependant version of the number. + + + + Returns a string containing a number represented either in exponential or fixed-point + notation with a specified number of digits. + + The number of significant digits. Must be in the range 1 – 21, + inclusive. + A string containing a number represented either in exponential or fixed-point + notation with a specified number of digits. + + For numbers in exponential notation, precision - 1 digits are returned after the + decimal point. For numbers in fixed notation, precision significant digits are + returned. + If precision is not supplied or is undefined, the toString method is called instead. + + + + + Returns the textual representation of the number. + + Specifies a radix for converting numeric values to strings. + The textual representation of the number. + + + + Returns the primitive value of the specified object. + + The primitive value of the specified object. + + + + Calculates the number of leading zero bits in the integer representation of this + number. + + The number of leading zero bits in the integer representation of this number. + + + + Counts the number of set bits in an integer. + + The integer. + The number of set bits in the integer. + + + + The base class of the javascript function attributes. + + + + + Creates a new BaseJSFunctionAttribute instance with no flags. + + + + + Creates a new BaseJSFunctionAttribute instance. + + One or more flags. + + + + Gets or sets the flags associated with the function. + + + + + Marks a method as being visible to javascript code. + + + + + Creates a new JSFunctionAttribute instance with no flags. + + + + + Get or sets the name of the function, as exposed to javascript. + + + + + Indicates the function is non-standard. + + + + + Indicates the function is deprecated and should not be used. + + + + + Gets or sets the "typical" number of arguments expected by the function. + + + + + Gets or sets whether the property value is writable. If this flag is not set, + attempting to modify the property will fail. The default value of this property + is true. + + + + + + Gets or sets whether the property should be enumerable (exposed via the + for...in construct) in JavaScript code. The default value of this + property is false. + + + + + + Gets or sets whether the property should be configurable, that is, whether + the property may be changed or have its descriptor changed by JavaScript + code. The default value of this property is true. + + + + + + Marks a method as being visible to javascript code. + Used internally - has different defaults to what you would expect. + + + + + Gets or sets the number of parameters that are required. If the function is called + with fewer than this number of arguments, then a TypeError will be thrown. + + + + + Marks a property as being visible to JavaScript code. + + + + + Creates a new + + + + + Gets or sets the name of the property as exposed to JavaScript code. + + + + + Gets or sets whether the property should be enumerable (exposed via the + for...in construct) in JavaScript code. The default value of this + property is false. + + + + + + Gets or sets whether the property should be configurable, that is, whether + the property may be changed or have its descriptor changed by JavaScript + code. The default value of this property is true. + + + + + + Some built-in objects act like both classes and functions depending on whether the + new operator is used (for example, the Number object acts this way). This + property indicates that the method should be called when an object is called like + a function. + + + + + Indicates that the method should be called when the new keyword is used. + + + + + Marks a field as being visible to javascript code. Currently only const fields + are supported. + + + + + Represents a container for property names and attributes. + + + + + Creates a new HiddenClassSchema instance from a modify or delete operation. + + + + + Creates a new HiddenClassSchema instance from an add operation. + + + + + Creates a hidden class schema with no properties. + + A hidden class schema with no properties. + + + + Gets the number of properties defined in this schema. + + + + + Gets the index into the Values array of the next added property. + + + + + Enumerates the property names for this schema. + + An enumerable collection of property names. + + + + Enumerates the property names and values for this schema. + + The array containing the property values. + An enumerable collection of property names and values. + + + + Gets the zero-based index of the property with the given name. + + The property key (either a string or a Symbol). + The zero-based index of the property, or -1 if a property with the + given name does not exist. + + + + Gets the zero-based index of the property with the given name and the attributes + associated with the property. + + The property key (either a string or a Symbol). + A structure containing the zero-based index of the property, or -1 if a property with the + given name does not exist. + + + + Adds a property to the schema. + + The property key of the property to add. + The property attributes. + A new schema with the extra property. + + + + Adds multiple properties to the schema. + + The properties to add. + A new schema with the extra properties. + + + + Deletes a property from the schema. + + The property key of the property to delete. + A new schema without the property. + + + + Modifies the attributes for a property in the schema. + + The property key of the property to modify. + The new attributes. + A new schema with the modified property. + + + + Creates the properties dictionary. + + + + + A set of flags that controls stub generation. + + + + + No flags were specified. + + + + + The first parameter to the function is the associated ScriptEngine. + + + + + The first (or second, if HasEngineParameter is specified) parameter to the + function is the this value. + + + + + Indicates that the instance object may be modified by the function. + + + + + A return value of null is converted to undefined immediately after control leaves the + method. + + + + + Represents the built-in javascript Object object. + + + + + Creates a new Object object. + + The next object in the prototype chain. + The prototype for instances created by this function. + + + + Creates a new Object instance. + + + + + Converts the given argument to an object. + + The value to convert. + + + + Converts the given argument to an object. + + The value to convert. + + + + Retrieves the next object in the prototype chain for the given object. + + The object to retrieve the prototype from. + The next object in the prototype chain for the given object, or null + if the object has no prototype chain. + + + + Sets the prototype of a specified object to another object or null. + + The object which is to have its prototype set. + The object's new prototype (an object or null). + The specified object. + + + + Gets an object that contains details of the property with the given name. + + The object to retrieve property details for. + The property key (either a string or a Symbol). + An object containing some of the following properties: configurable, + writable, enumerable, value, get and set. + + + + Creates an array containing the names of all the named properties on the object (even + the non-enumerable ones). + + The object to retrieve the property names for. + An array containing property names. + + + + Creates an array containing the symbols of all the symbol-based properties on the + object (even the non-enumerable ones). + + The object to retrieve the property symbols for. + An array containing symbols. + + + + Creates an object with the given prototype and, optionally, a set of properties. + + The script engine. + A reference to the next object in the prototype chain for the + created object. + An object containing one or more property descriptors. + A new object instance. + + + + Assigns enumerable properties of one or more source objects onto a destination object. + + The script engine. + The destination object to copy properties to. + One or more source objects to copy properties from. + A new object instance. + + + + Modifies the value and attributes of a property. + + The object to define the property on. + The property key (either a string or a Symbol). + A property descriptor containing some of the following + properties: configurable, writable, enumerable, value, get and set. + The object with the property. + + + + Modifies multiple properties on an object. + + The object to define the properties on. + An object containing one or more property descriptors. + The object with the properties. + + + + Prevents the addition or deletion of any properties on the given object. + + The object to modify. + The object that was affected. + + + + Prevents the addition, deletion or modification of any properties on the given object. + + The object to modify. + The object that was affected. + + + + Prevents the addition of any properties on the given object. + + The object to modify. + The object that was affected. + + + + Determines if addition or deletion of any properties on the object is allowed. + + The object to check. + true if properties can be added or at least one property can be + deleted; false otherwise. + + + + Determines if addition, deletion or modification of any properties on the object is + allowed. + + The object to check. + true if properties can be added or at least one property can be + deleted or modified; false otherwise. + + + + Determines if addition of properties on the object is allowed. + + The object to check. + true if properties can be added to the object; false otherwise. + + + + Creates an array containing the names of all the enumerable properties on the object. + + The object to retrieve the property names for. + An array containing the names of all the enumerable properties on the object. + + + + Determines whether two values are the same value. Note that this method considers NaN + to be equal with itself and negative zero is considered different from positive zero. + + The first value to compare. + The second value to compare. + true if the values are the same. + + + + Transforms a list of key-value pairs into an object. + + An iterable such as Array or Map. + A new object whose properties are given by the entries of the iterable. + + + + Provides functionality common to all JavaScript objects. + + + + + Indicates whether properties can be added to this object. + + + + + Creates an Object with the default prototype. + + The script engine associated with this object. + + + + Called by derived classes to create a new object instance. + + The next object in the prototype chain. Cannot be null. + + + + Called by derived classes to create a new object instance. + + The script engine associated with this object. + The next object in the prototype chain. Can be null. + + + + Creates an Object with no prototype to serve as the base prototype of all objects. + + The script engine associated with this object. + An Object with no prototype. + + + + Creates an Object instance (use ObjectConstructor.Construct rather than this). + + The next object in the prototype chain. + An Object instance. + + + + Initializes the prototype properties. + + The object to set the properties on. + A reference to the constructor that owns the prototype. + + + + Gets a reference to the script engine associated with this object. + + + + + Gets the next object in the prototype chain. There is no corresponding property in + javascript (it is is *not* the same as the prototype property), instead use + Object.getPrototypeOf(). Returns null for the root object in the prototype + chain. Use to set this value. + + + + + Gets a value that indicates whether the object can have new properties added to it. + Called by Object.isExtensible(). Use to set this value. + + + + + Gets or sets the value of a named property. + + The property key (either a string or a Symbol). + The property value, or if the property doesn't + exist. + + + + Gets or sets the value of an array-indexed property. + + The index of the property to retrieve. + The property value, or if the property doesn't + exist. + + + + Gets or sets the value of an array-indexed property. + + The index of the property to retrieve. + The property value, or if the property doesn't + exist. + + + + Gets an enumerable list of every property name and value associated with this object. + Does not include properties in the prototype chain. + + + + + Gets an enumerable list of every property name associated with this object. + Does not include properties in the prototype chain. + + + + + Sets the next object in the prototype chain. Can be null, which indicates there + are no further objects in the chain. + + The new prototype. + true to throw an exception if the prototype could not + be set. This can happen if the object is non-extensible or if setting the prototype + would introduce a cyclic dependency. + true if the prototype was successfully applied; false otherwise. + + + + Makes this object non-extensible, which means no new properties can be added to it. + + true to throw an exception if the object could not + be made non-extensible. + true if the operation was successful, false otherwise. The + default implementation always returns true. + + + + Determines if a property with the given name exists. + + The property key (either a string or a Symbol). + true if the property exists on this object or in the prototype chain; + false otherwise. + + + + Gets the value of the property with the given array index. + + The array index of the property. + The value of the property, or null if the property doesn't exist. + The prototype chain is searched if the property does not exist directly on + this object. + + + + Gets the value of the property with the given array index. + + The array index of the property. + The value of the "this" keyword inside a getter. + The value of the property, or null if the property doesn't exist. + The prototype chain is searched if the property does not exist directly on + this object. + + + + Gets the value of the property with the given name. + + The property key (either a string or a Symbol). + The value of the property, or null if the property doesn't exist. + The prototype chain is searched if the property does not exist directly on + this object. + + + + Gets the value of the property with the given name. + + The property key (either a string or a Symbol). + The value of the "this" keyword inside a getter. + The value of the property, or null if the property doesn't exist. + The prototype chain is searched if the property does not exist directly on + this object. + + + + Gets the value of the property with the given name. + + The property key (either a string or a Symbol). + Receives the value of the property, or null if the property + doesn't exist. + true if the value exists, false otherwise. + + + + Gets the value of the property with the given name. + + The name of the property. + The value of the property, or if the property + doesn't exist. + The prototype chain is searched if the property does not exist directly on + this object. + + + + Gets the value of the property with the given name. The name cannot be an array index. + + The property key (either a string or a Symbol). Cannot be an array index. + The value of the "this" keyword inside a getter. + The value of the property, or null if the property doesn't exist. + The prototype chain is searched if the property does not exist directly on + this object. + + + + Gets a descriptor for the property with the given array index. + + The array index of the property. + A property descriptor containing the property value and attributes. + The prototype chain is not searched. + + + + Gets a descriptor for the property with the given name. + + The property key (either a string or a Symbol). + A property descriptor containing the property value and attributes. + The prototype chain is not searched. + + + + Returns the function with the given name, if it exists. + + The property key (either a string or a Symbol). Cannot be a number. + The method with the given name, if it exists; otherwise null. + A property exists with the given name, but it's not callable. + + + + Sets the value of the property with the given array index. If a property with the + given index does not exist, or exists in the prototype chain (and is not a setter) then + a new property is created. + + The array index of the property to set. + The value to set the property to. This must be a javascript + primitive (double, string, etc) or a class derived from . + true to throw an exception if the property could not + be set. This can happen if the property is read-only or if the object is sealed. + false if an error occurred. + + + + Sets the value of the property with the given array index. If a property with the + given index does not exist, or exists in the prototype chain (and is not a setter) then + a new property is created. + + The array index of the property to set. + The value to set the property to. This must be a javascript + primitive (double, string, etc) or a class derived from . + The value of the "this" keyword inside a setter. + true to throw an exception if the property could not + be set. This can happen if the property is read-only or if the object is sealed. + false if an error occurred. + + + + Sets the value of the property with the given name. If a property with the given name + does not exist, or exists in the prototype chain (and is not a setter) then a new + property is created. + + The property key of the property to set. + The value to set the property to. This must be a javascript + primitive (double, string, etc) or a class derived from . + true to throw an exception if the property could not + be set (i.e. if the property is read-only or if the object is not extensible and a new + property needs to be created). + false if is false and an error + occurred; true otherwise. + + + + Sets the value of the property with the given name. If a property with the given name + does not exist, or exists in the prototype chain (and is not a setter) then a new + property is created. + + The property key of the property to set. + The value to set the property to. This must be a javascript + primitive (double, string, etc) or a class derived from . + The value of the "this" keyword inside a setter. + true to throw an exception if the property could not + be set (i.e. if the property is read-only or if the object is not extensible and a new + property needs to be created). + false if is false and an error + occurred; true otherwise. + + + + Sets the value of the property with the given name. If a property with the given name + does not exist, or exists in the prototype chain (and is not a setter) then a new + property is created. + + The name of the property to set. + The value to set the property to. This must be a javascript + primitive (double, string, etc) or a class derived from . + true to throw an exception if the property could not + be set (i.e. if the property is read-only or if the object is not extensible and a new + property needs to be created). + false if is false and an error + occurred; true otherwise. + + + + Sets the value of the property with the given name. If a property with the given name + does not exist, or exists in the prototype chain (and is not a setter) then a new + property is created. + + The name of the property to set. + The value to set the property to. This must be a javascript + primitive (double, string, etc) or a class derived from . + The value of the "this" keyword inside a setter. + true to throw an exception if the property could not + be set (i.e. if the property is read-only or if the object is not extensible and a new + property needs to be created). + false if is false and an error + occurred; true otherwise. + + + + Sets the value of the given property. If a property with the given name exists, but + only in the prototype chain, then a new property is created (unless the property is a + setter, in which case the setter is called and no property is created). If the + property does not exist at all, then no property is created and the method returns + false. This method is used to set the value of a variable reference within a + with statement. + + The property key (either a string or a Symbol). Cannot be an array index. + The desired value of the property. This must be a javascript + primitive (double, string, etc) or a class derived from . + The value of the "this" keyword inside a setter. + true to throw an exception if the property could not + be set (i.e. if the property is read-only or if the object is not extensible and a new + property needs to be created). + Set to true if the property value exists; false otherwise. + false if is false and an error + occurred; true otherwise. + + + + Deletes the property with the given array index. + + The array index of the property to delete. + true to throw an exception if the property could not + be set because the property was marked as non-configurable. + true if the property was successfully deleted, or if the property did + not exist; false if the property was marked as non-configurable and + was false. + + + + Deletes the property with the given name. + + The property key of the property to delete. + true to throw an exception if the property could not + be set because the property was marked as non-configurable. + true if the property was successfully deleted, or if the property did + not exist; false if the property was marked as non-configurable and + was false. + + + + Defines or redefines the value and attributes of a property. The prototype chain is + not searched so if the property exists but only in the prototype chain a new property + will be created. + + The property key of the property to modify. + The property value and attributes. + true to throw an exception if the property could not + be set. This can happen if the property is not configurable or the object is sealed. + true if the property was successfully modified; false otherwise. + + + + Checks whether the given descriptor is compatible with the current descriptor. + + Indicates whether the target object is extensible. + The new descriptor. + The descriptor corresponding to the currently existing property. + true if the new descriptor is compatible with the old one; false otherwise. + + + + Adds a property to this object. The property must not already exist. + + The property key of the property to add. + The desired value of the property. This can be a + . + Attributes describing how the property may be modified. + true to throw an exception if the property could not + be added (i.e. if the object is not extensible). + true if the property was successfully added; false otherwise. + + + + Sets a property value and attributes, or adds a new property if it doesn't already + exist. Any existing attributes are ignored (and not modified). + + The property key (either a string or a Symbol). + The intended value of the property. + Attributes that indicate whether the property is writable, + configurable and enumerable. + Indicates whether to overwrite any existing attributes. + + + + Sets up multiple properties at once. Can only be called on an empty object. + + The list of properties to set. + + + + Initializes a property to be undefined, if the property doesn't exist. + If it does exist, then this method does nothing. + + The property key of the property. + The attributes of the new property, if it doesn't exist. + + + + Returns a primitive value that represents the current object. Used by the addition and + equality operators. + + Indicates the preferred type of the result. + A primitive value that represents the current object. + + + + Returns a primitive value that represents the current object, without using the + @@toPrimitive symbol. + + Indicates the preferred type of the result. + A primitive value that represents the current object. + + + + Calls the function with the given name. The function must exist on this object or an + exception will be thrown. + + The name of the function to call (or a symbol). + The parameters to pass to the function. + The result of calling the function. + + + + Calls the function with the given name. + + The result of calling the function. + The name or symbol of the function to call. + The parameters to pass to the function. + true if the function was called successfully; false otherwise. + + + + Returns a string representing this object. + + A string representing this object. + + + + Determines if a property with the given name exists on this object. + + The associated script engine. + The object that is being operated on. + The property key (either a string or a Symbol). + true if a property with the given name exists on this object, + false otherwise. + Objects in the prototype chain are not considered. + + + + Determines if this object is in the prototype chain of the given object. + + The associated script engine. + The object that is being operated on. + The object to check. + true if this object is in the prototype chain of the given object; + false otherwise. + + + + Determines if a property with the given name exists on this object and is enumerable. + + The associated script engine. + The object that is being operated on. + The property key (either a string or a Symbol). + true if a property with the given name exists on this object and is + enumerable, false otherwise. + Objects in the prototype chain are not considered. + + + + Returns a locale-dependant string representing the current object. + + Returns a locale-dependant string representing the current object. + + + + Returns a primitive value associated with the object. + + A primitive value associated with the object. + + + + Returns a string representing the current object. + + The current script environment. + The value of the "this" keyword. + A string representing the current object. + + + + Populates the object with functions by searching a .NET type for methods marked with + the [JSFunction] attribute. Should be called only once at startup. Also automatically + populates properties marked with the [JSProperty] attribute. + + + + + Populates the object with functions by searching a .NET type for methods marked with + the [JSFunction] attribute. Should be called only once at startup. Also automatically + populates properties marked with the [JSProperty] attribute. + + The type to search for methods. + + + + Populates the object with functions by searching a .NET type for methods marked with + the [JSFunction] attribute. Should be called only once at startup. Also automatically + populates properties marked with the [JSProperty] attribute. + + The type to search for methods. + The binding flags to use to search for properties and methods. + + + + Populates the object with properties by searching a .NET type for fields marked with + the [JSField] attribute. Should be called only once at startup. + + + + + Populates the object with properties by searching a .NET type for fields marked with + the [JSField] attribute. Should be called only once at startup. + + The type to search for fields. + + + + Represents a the value of an accessor property. + + + + + Creates a new PropertyAccessorValue instance. + + The getter function, or null if no getter was provided. + The setter function, or null if no setter was provided. + + + + Gets the function that is called when the property value is retrieved. + + + + + Gets the function that is called when the property value is modified. + + + + + Gets the property value by calling the getter, if one is present. + + The value of the "this" keyword inside the getter. + The property value returned by the getter. + + + + Sets the property value by calling the setter, if one is present. + + The value of the "this" keyword inside the setter. + The desired value. + + + + Returns a string that represents the current object. + + + + + A set of flags which controls the accessibility of properties. + + + + + Indicates the property value is not writable, enumerable or configurable. This is + the default for built-in properties. + + + + + Indicates the property value is writable. If this flag is not set, attempting to + modify the property will fail. Not used if the property is an accessor property. + + + + + Indicates the property will be enumerated by a for-in enumeration. Otherwise, the + property is said to be non-enumerable. + + + + + Indicates the property can be deleted or changed to an accessor property or have it's + flags changed. + + + + + Indicates the property can be modified and deleted but will not be enumerated. + + + + + Indicates the property is read-write, enumerable and configurable. This is the default + for user-created properties. + + + + + Indicates the property is an accessor property (i.e. it has a getter or a setter). + + + + + Indicates the property is the "magic" length property (only found on arrays). + + + + + Represents either a named data property, or a named accessor property. + + + + + Creates a new PropertyDescriptor instance. + + The initial value for the property. + The property attributes. + + + + Creates a new PropertyDescriptor instance with a getter function and, optionally, a + setter function. + + The function to call to retrieve the property value. + The function to call to set the property value. + The property attributes (whether the property is writable or + not is implied by whether there is a setter function). + + + + Indicates that a property doesn't exist. + + + + + Used to indicate that a property whose value is undefined, and is not writable, + enumerable or configurable. + + + + + Gets a value that indicates whether the property exists. + + + + + Gets the property attributes. These attributes describe how the property can + be modified. + + + + + Gets a boolean value indicating whether the property value can be set. + + + + + Gets a boolean value indicating whether the property value will be included during an + enumeration. + + + + + Gets a boolean value indicating whether the property can be deleted. + + + + + Gets the raw property value. Does not call the get accessor, even if one is present. + + + + + Returns a string representing the current object. + + A string representing the current object. + + + + Gets a value that indicates whether the value is computed using accessor functions. + + + + + Gets the function that is called when the property value is retrieved, assuming this + property value is computed using accessor functions. Returns null if the + property is not a accessor property. + + + + + Gets the function that is called when the property value is modified, assuming this + property value is computed using accessor functions. Returns null if the + property is not a accessor property. + + + + + Creates a property descriptor from an object containing any of the following + properties: configurable, writable, enumerable, value, get, set. + + The object to get the property values from. + The values to use if the relevant value is not specified. + A PropertyDescriptor that corresponds to the object. + + + + Populates an object with the following properties: configurable, writable, enumerable, + value, get, set. + + The script engine used to create a new object. + An object with the information in this property descriptor set as individual + properties. + + + + Checks whether the given descriptor is compatible with the current descriptor. + + The new descriptor. + The descriptor corresponding to the currently existing property. + true if the new descriptor is compatible with the old one; false otherwise. + + + + Represents a property name and value. + + + + + Initializes a property with any descriptor. + + The property key (either a string or a Symbol). + A descriptor describing the property. + + + + Initializes a simple property. + + The property key (either a string or a Symbol). + The property value. + Indicates whether the property is readable, writable and/or enumerable. + + + + Initializes a getter/setter property. + + The property key (either a string or a Symbol). + The function to call to retrieve the property value. + The function to call to set the property value. + Indicates whether the property is readable, writable and/or enumerable. + + + + Gets the property key. + + + + + Gets the value of the property. + + + + + Gets the property attributes. These attributes describe how the property can + be modified. + + + + + Gets a boolean value indicating whether the property value can be set. + + + + + Gets a boolean value indicating whether the property value will be included during an + enumeration. + + + + + Gets a boolean value indicating whether the property can be deleted. + + + + + Returns a string that represents the current object. + + + + + Represents a property name. Used to speed up access to object properties and global variables. + + + + + Creates a new PropertyName instance. + + The name of the property to be accessed. + + + + The property name. + + + + + A reference to a schema that defines how properties are stored. + + + + + The index into the property array. + + + + + Caches property details. + + A reference to a schema that defines how properties are stored. + The index into the property array. + + + + Clears the cached property details. + + + + + Returns a textual representation of this object. + + + + + + Represents the information stored about a property in the class schema. + + + + + Creates a new SchemaProperty instance. + + The index of the property in the backing array. + The property attributes. These attributes describe how the + property can be modified. + + + + Gets a value that indicates that a property doesn't exist. + + + + + Gets the index of the property in the backing array. + + + + + Gets the property attributes. These attributes describe how the property can + be modified. + + + + + Gets a value that indicates whether the property exists. + + + + + Gets a boolean value indicating whether the property value can be set. + + + + + Gets a boolean value indicating whether the property value will be included during an + enumeration. + + + + + Gets a boolean value indicating whether the property can be deleted. + + + + + Gets a value that indicates whether the value is computed using accessor functions. + + + + + Gets a value that indicates whether the property is the magic length property. + + + + + Represents the built-in javascript Promise object. + + + + + Creates a new promise constructor. + + The next object in the prototype chain. + + + + Called when the Promise object is invoked like a function, e.g. var x = Promise(). + Throws an error. + + + + + Creates a new Promise instance. + + The function that the promise executes. + The Promise instance. + + + + Creates a new Promise instance from a task. + + A task to wait on. + The Promise instance. + + If the task is of type Task<object> then the result of the task will be used to + resolve the promise. Otherwise, the promise is resolved with "undefined" as the value. + + + + + A reference to the constructor function that is used to create derived objects. + + + + + Returns a Promise that is rejected for the specified reason. + + The reason. Can be an Error instance. + + + + + Returns either a new promise resolved with the passed argument, or the argument itself + if the argument is a promise produced by this constructor. + + Argument to be resolved by this Promise. Can also be a Promise or + a thenable to resolve. + + + + + Returns a new promise which is settled in the same way as the first passed promise to + settle. All elements of the passed iterable are resolved to promises. + + An iterable object such as an Array. + + + + + Returns a Promise. It takes one argument: a list of Promises that determine whether + the new Promise is fulfilled or rejected. + + An iterable object such as an Array. + + + + + Represents an instance of the Promise object. + + + + + Creates a new Promise instance. + + + + + + + Creates a new Promise instance. + + + + + + Resolves the promise with the given value. If the value is an object with a "then" + function, the returned promise will "follow" that thenable, adopting its eventual + state; otherwise the returned promise will be fulfilled with the value. + + The resolved value of the promise, or a promise or thenable to + follow. + + + + Rejects the promise with the given reason. + + The reason why this promise rejected. Can be an Error instance. + + + + Creates the Promise prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + When the promise is completed, i.e either fulfilled or rejected, the specified callback + function is executed. + + A Function called when the Promise is completed. + + + + + Returns a Promise and deals with rejected cases only. It behaves the same as calling + Promise.prototype.then(undefined, onRejected). + + A Function called when the Promise is rejected. This function + has one argument, the rejection reason. + + + + + Returns a Promise. It takes two arguments: callback functions for the success and + failure cases of the Promise. + + A Function called when the Promise is fulfilled. This + function has one argument, the fulfillment value. + A Function called when the Promise is rejected. This function + has one argument, the rejection reason. + + + + + Creates a task that completes when this promise completes. + + The task that completes when this promise completes. + + + + Gets the promise status. Used by debugger decoration only. + + + + + Gets the promise result. Used by debugger decoration only. + + + + + Gets a function that will resolve the promise. + + + + + Gets a function that will reject the promise. + + + + + Represents a proxy instance. + + + + + The proxy target. + + + + + Invalidates (switches off) the proxy. + + + + + The Set object lets you store unique values of any type, whether primitive values or object references. + + + + + Creates a new set constructor. + + The next object in the prototype chain. + + + + Called when the typed array object is invoked like a function, e.g. Proxy(). + Throws an error. + + + + + Creates a proxy object. + + A target object to wrap with Proxy. It can be any sort of object, including a native array, a function, or even another proxy. + An object whose properties are functions that define the behavior of the proxy when an operation is performed on it. + A new proxy object. + + + + Creates a revocable proxy object. + + The script engine. + A target object to wrap with Proxy. It can be any sort of object, including a native array, a function, or even another proxy. + An object whose properties are functions that define the behavior of the proxy when an operation is performed on it. + A new proxy object. + + + + Represents a callable, constructable instance of the Proxy class. + + + + + Creates a new proxy instance. + + The script engine. + A target object to wrap with Proxy. It can be any sort of object, + including a native array, a function, or even another proxy. + An object whose properties are functions that define the + behavior of the proxy when an operation is performed on it. + + + + The proxy target. + + + + + Invalidates (switches off) the proxy. + + + + + Calls this function, passing in the given "this" value and zero or more arguments. + + The value of the "this" keyword within the function. + An array of argument values. + The value that was returned from the function. + + + + Creates an object, using this function as the constructor. + + The value of 'new.target'. + An array of argument values. + The object that was created. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Represents an instance of the Proxy class, one that is non-callable and non-constructable. + + + + + Creates a new proxy instance. + + The script engine. + A target object to wrap with Proxy. It can be any sort of object, + including a native array, a function, or even another proxy. + An object whose properties are functions that define the + behavior of the proxy when an operation is performed on it. + + + + The proxy target. + + + + + Invalidates (switches off) the proxy. + + + + + Gets the next object in the prototype chain. There is no corresponding property in + javascript (it is is *not* the same as the prototype property), instead use + Object.getPrototypeOf(). Returns null for the root object in the prototype + chain. Use to set this value. + + + Enforces the following invariants: + * The return value must be either an Object or null. + * If the target object is not extensible, the return value must be the same as + Object.getPrototypeOf() applied to the proxy object's target object. + + + + + Sets the next object in the prototype chain. Can be null, which indicates there + are no further objects in the chain. + + The new prototype. + true to throw an exception if the prototype could not + be set. This can happen if the object is non-extensible or if setting the prototype + would introduce a cyclic dependency. + true if the prototype was successfully applied; false otherwise. + + + + Gets a value that indicates whether the object can have new properties added to it. + Called by Object.isExtensible(). Use to set this value. + + + + + Makes this object non-extensible, which means no new properties can be added to it. + + true to throw an exception if the object could not + be made non-extensible. + true if the operation was successful, false otherwise. + + + + Gets a descriptor for the property with the given array index. + + The array index of the property. + A property descriptor containing the property value and attributes. + The prototype chain is not searched. + + + + Gets a descriptor for the property with the given name. + + The property key (either a string or a Symbol). + A property descriptor containing the property value and attributes. + + Enforces the following invariants: + * The result of [[GetOwnProperty]] must be either an Object or undefined. + * A property cannot be reported as non-existent, if it exists as a non-configurable own + property of the target object. + * A property cannot be reported as non-existent, if the target object is not + extensible, unless it does not exist as an own property of the target object. + * A property cannot be reported as existent, if the target object is not extensible, + unless it exists as an own property of the target object. + * A property cannot be reported as non-configurable, unless it exists as a + non-configurable own property of the target object. + * A property cannot be reported as both non-configurable and non-writable, unless it + exists as a non-configurable, non-writable own property of the target object. + + + + + Defines or redefines the value and attributes of a property. The prototype chain is + not searched so if the property exists but only in the prototype chain a new property + will be created. + + The property key of the property to modify. + The property value and attributes. + true to throw an exception if the property could not + be set. This can happen if the property is not configurable or the object is sealed. + true if the property was successfully modified; false otherwise. + + + + Determines if a property with the given name exists. + + The property key (either a string or a Symbol). + true if the property exists on this object or in the prototype chain; + false otherwise. + + + + Gets the value of the property with the given array index. + + The array index of the property. + The value of the "this" keyword inside a getter. + The value of the property, or null if the property doesn't exist. + The prototype chain is searched if the property does not exist directly on + this object. + + + + Gets the value of the property with the given name. + + The name of the property. + The value of the property, or if the property + doesn't exist. + The prototype chain is searched if the property does not exist directly on + this object. + + + + Gets the value of the property with the given name. The name cannot be an array index. + + The property key (either a string or a Symbol). Cannot be an array index. + The value of the "this" keyword inside a getter. + The value of the property, or null if the property doesn't exist. + The prototype chain is searched if the property does not exist directly on + this object. + + + + Gets the value of the property with the given name. + + The property key (either a string or a Symbol). + The value of the "this" keyword inside a getter. + The value of the property, or null if the property doesn't exist. + The prototype chain is searched if the property does not exist directly on + this object. + + + + Sets the value of the property with the given array index. If a property with the + given index does not exist, or exists in the prototype chain (and is not a setter) then + a new property is created. + + The array index of the property to set. + The value to set the property to. This must be a javascript + primitive (double, string, etc) or a class derived from . + The value of the "this" keyword inside a setter. + true to throw an exception if the property could not + be set. This can happen if the property is read-only or if the object is sealed. + false if an error occurred. + + + + Sets the value of the property with the given name. If a property with the given name + does not exist, or exists in the prototype chain (and is not a setter) then a new + property is created. + + The name of the property to set. + The value to set the property to. This must be a javascript + primitive (double, string, etc) or a class derived from . + The value of the "this" keyword inside a setter. + true to throw an exception if the property could not + be set (i.e. if the property is read-only or if the object is not extensible and a new + property needs to be created). + false if is false and an error + occurred; true otherwise. + + + + Sets the value of the property with the given name. If a property with the given name + does not exist, or exists in the prototype chain (and is not a setter) then a new + property is created. + + The property key of the property to set. + The value to set the property to. This must be a javascript + primitive (double, string, etc) or a class derived from . + The value of the "this" keyword inside a setter. + true to throw an exception if the property could not + be set (i.e. if the property is read-only or if the object is not extensible and a new + property needs to be created). + false if is false and an error + occurred; true otherwise. + + + + Deletes the property with the given name. + + The property key of the property to delete. + true to throw an exception if the property could not + be set because the property was marked as non-configurable. + true if the property was successfully deleted, or if the property did + not exist; false if the property was marked as non-configurable and + was false. + + + + Gets an enumerable list of every property name associated with this object. + Does not include properties in the prototype chain. + + + + + Represents the built-in Reflect class that provides methods for interceptable JavaScript + operations. + + + + + Creates a new Reflect object. + + The next object in the prototype chain. + + + + Calls a target function with arguments as specified by the argumentsList parameter. + See also Function.prototype.apply(). + + The target function to call. + The value of this provided for the call to target. + An array-like object specifying the arguments with which target should be called. + The result of calling the given target function with the specified this value and arguments. + + + + The new operator as a function. Equivalent to calling new target(...argumentsList). Also provides the option to specify a different prototype. + + The target function to call. + An array-like object specifying the arguments with which target should be called. + The constructor whose prototype should be used. See also the new.target operator. If newTarget is not present, its value defaults to target. + A new instance of target (or newTarget, if present), initialized by target as a constructor with the given argumentsList. + + + + Similar to Object.defineProperty(). Returns a Boolean that is true if the property was successfully defined. + + The target object on which to define the property. + The name of the property to be defined or modified. + The attributes for the property being defined or modified. + A Boolean indicating whether or not the property was successfully defined. + + + + The delete operator as a function. Equivalent to calling delete target[propertyKey]. + + The target object on which to delete the property. + The name of the property to be deleted. + A Boolean indicating whether or not the property was successfully deleted. + + + + Returns the value of the property. Works like getting a property from an object (target[propertyKey]) as a function. + + The target object on which to get the property. + The name of the property to get. + The value of this provided for the call to target if a getter + is encountered. When used with Proxy, it can be an object that inherits from target. + The value of the property. + + + + Similar to Object.getOwnPropertyDescriptor(). Returns a property descriptor of the given property if it exists on the object, undefined otherwise. + + The target object in which to look for the property. + The name of the property to get an own property descriptor for. + + + + + Same as Object.getPrototypeOf(). + + The target object of which to get the prototype. + The prototype of the given object. If there are no inherited properties, null is returned. + + + + Returns a Boolean indicating whether the target has the property. Either as own or + inherited. Works like the in operator as a function. + + The target object in which to look for the property. + The name of the property to check. + A Boolean indicating whether or not the target has the property. + + + + Same as Object.isExtensible(). Returns a Boolean that is true if the target is extensible. + + The target object which to check if it is extensible. + A Boolean indicating whether or not the target is extensible. + + + + Returns an array of the target object's own (not inherited) property keys. + + The target object from which to get the own keys. + An Array of the target object's own property keys. + + + + Similar to Object.preventExtensions(). + + The target object on which to prevent extensions. + A Boolean indicating whether or not the target was successfully set to prevent extensions. + + + + A function that assigns values to properties. Returns a Boolean that is true if the update was successful. + + The target object on which to set the property. + The name of the property to set. + The value to set. + The value of this provided for the call to target if a setter is encountered. + A Boolean indicating whether or not setting the property was successful. + + + + A function that sets the prototype of an object. Returns a Boolean that is true if the update was successful. + + The target object of which to set the prototype. + The object's new prototype (an object or null). + A Boolean indicating whether or not the prototype was successfully set. + + + + Represents the built-in javascript RegExp object. + + + + + Creates a new RegExp object. + + The next object in the prototype chain. + + + + A reference to the constructor function that is used to create derived objects. + + + + + Adds the deprecated RegExp properties to the given list. + + The list to add to. + + + + Initializes a single deprecated property. + + The list to add to. + The name of the property. + The property getter. + The property attributes (determines whether the property is enumerable). + + + + Sets the deprecated RegExp properties. + + The string against which a regular expression is matched. + The regular expression match to base the properties on. + + + + Gets the value of RegExp.input and RegExp.$_. + + The value of RegExp.input and RegExp.$_. + + + + Adapter for GetInput(). + + + + + + + + + Gets the value of RegExp.$1. + + The value of RegExp.$1. + + + + Adapter for GetGroup1(). + + + + + + + + + Gets the value of RegExp.$2. + + The value of RegExp.$2. + + + + Adapter for GetGroup2(). + + + + + + + + + Gets the value of RegExp.$3. + + The value of RegExp.$3. + + + + Adapter for GetGroup3(). + + + + + + + + + Gets the value of RegExp.$4. + + The value of RegExp.$4. + + + + Adapter for GetGroup4(). + + + + + + + + + Gets the value of RegExp.$5. + + The value of RegExp.$5. + + + + Adapter for GetGroup5(). + + + + + + + + + Gets the value of RegExp.$6. + + The value of RegExp.$6. + + + + Adapter for GetGroup6(). + + + + + + + + + Gets the value of RegExp.$7. + + The value of RegExp.$7. + + + + Adapter for GetGroup7(). + + + + + + + + + Gets the value of RegExp.$8. + + The value of RegExp.$8. + + + + Adapter for GetGroup8(). + + + + + + + + + Gets the value of RegExp.$9. + + The value of RegExp.$9. + + + + Adapter for GetGroup9(). + + + + + + + + + Gets the value of RegExp.lastMatch and RegExp.$&. + + The value of RegExp.lastMatch and RegExp.$&. + + + + Adapter for GetLastMatch(). + + + + + + + + + Gets the value of RegExp.lastParen and RegExp.$+. + + The value of RegExp.lastParen and RegExp.$+. + + + + Adapter for GetLastParen(). + + + + + + + + + Gets the value of RegExp.leftContext and RegExp.$`. + + The value of RegExp.leftContext and RegExp.$`. + + + + Adapter for GetLeftContext(). + + + + + + + + + Gets the value of RegExp.rightContext and RegExp.$'. + + The value of RegExp.rightContext and RegExp.$'. + + + + Adapter for GetRightContext(). + + + + + + + + + Called when the RegExp object is invoked like a function e.g. RegExp('abc', 'g') or + RegExp(/abc/). If a string is passed as the first parameter it creates a new regular + expression instance. Otherwise, if a regular expression is passed it returns the given + regular expression verbatim. + + A regular expression pattern or a regular expression. + Available flags, which may be combined, are: + g (global search for all occurrences of pattern) + i (ignore case) + m (multiline search) + + + + Called when the new keyword is used on the RegExp object e.g. new RegExp(/abc/). + Creates a new regular expression instance. + + The regular expression pattern, or a regular expression + to clone. + Available flags, which may be combined, are: + g (global search for all occurrences of pattern) + i (ignore case) + m (multiline search) + + + + Called when the new keyword is used on the RegExp object e.g. new RegExp(/abc/). + Creates a new regular expression instance. + + The value of the new.target expression. + The regular expression pattern, or a regular expression + to clone. + Available flags, which may be combined, are: + g (global search for all occurrences of pattern) + i (ignore case) + m (multiline search) + + + + Represents an instance of the RegExp object. + + + + + Creates a new regular expression instance. + + The next object in the prototype chain. + The regular expression pattern. + Available flags, which may be combined, are: + g (global search for all occurrences of pattern) + i (ignore case) + m (multiline search) + + + + Creates a new regular expression instance by copying the pattern and flags from another + RegExp instance. + + The next object in the prototype chain. + The instance to copy the pattern and flags from. + + + + Creates the RegExp prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + Gets the primitive value of this object. + + + + + Gets the regular expression pattern. + + + + + Gets a string that contains the flags. + + + + + Gets a value that indicates whether the global flag is set. If this flag is set it + indicates that a search should find all occurrences of the pattern within the searched + string, not just the first one. + + + + + Gets a value that indicates whether the multiline flag is set. If this flag is set it + indicates that the ^ and $ tokens should match the start and end of lines and not just + the start and end of the string. + + + + + Gets a value that indicates whether the ignoreCase flag is set. If this flag is set it + indicates that a search should ignore differences in case between the pattern and the + matched string. + + + + + Gets the character position to start searching when the global flag is set. + + + + + Compiles the regular expression for faster execution. + + The regular expression pattern. + Available flags, which may be combined, are: + g (global search for all occurrences of pattern) + i (ignore case) + m (multiline search) + + + + Returns a boolean value that indicates whether or not a pattern exists in a searched string. + + The string on which to perform the search. + true if the regular expression has at least one match in the given + string; false otherwise. + + + + Executes a search on a string using a regular expression pattern, and returns an array + containing the results of that search. + + The string on which to perform the search. + Returns an array containing the match and submatch details, or null if + no match was found. The array returned by the exec method has three properties, input, + index and lastIndex. The input property contains the entire searched string. The index + property contains the position of the matched substring within the complete searched + string. The lastIndex property contains the position following the last character in + the match. + + + + Calculates the position to start searching. + + The string on which to perform the search. + The character position to start searching. + + + + Finds all regular expression matches within the given string. + + The string on which to perform the search. + An array containing the matched strings. + + + + Returns a copy of the given string with text replaced using a regular expression. + + The string on which to perform the search. + A string containing the text to replace for every successful match. + A copy of the given string with text replaced using a regular expression. + + + + Returns a copy of the given string with text replaced using a regular expression. + + The string on which to perform the search. + A string containing the text to replace for every successful match. + A copy of the given string with text replaced using a regular expression. + + + + Returns a copy of the given string with text replaced using a regular expression. + + The string on which to perform the search. + A function that is called to produce the text to replace + for every successful match. + A copy of the given string with text replaced using a regular expression. + + + + Returns the position of the first substring match in a regular expression search. + + The string on which to perform the search. + The character position of the first match, or -1 if no match was found. + + + + Splits the given string into an array of strings by separating the string into substrings. + + The string to split. + The maximum number of array items to return. Defaults to unlimited. + An array containing the split strings. + + + + Returns a string representing the current object. + + The object that is being operated on. + A string representing the current object. + + + + Parses the flags parameter into an enum. + + Available flags, which may be combined, are: + g (global search for all occurrences of pattern) + i (ignore case) + m (multiline search) + RegexOptions flags that correspond to the given flags. + + + + Creates a .NET Regex object using the given pattern and options. + + The pattern string. + The regular expression options. + A constructed .NET Regex object. + + + + The Set object lets you store unique values of any type, whether primitive values or object references. + + + + + Creates a new set constructor. + + The next object in the prototype chain. + + + + A reference to the constructor function that is used to create derived objects. + + + + + Called when the typed array object is invoked like a function, e.g. Int8Array(). + Throws an error. + + + + + Creates a new set instance. + + If an iterable object is passed, all of its elements will be + added to the new Set. null is treated as undefined. + A new set instance. + + + + The Set object lets you store unique values of any type, whether primitive values or object references. + + + + + Creates a new set instance. + + The next object in the prototype chain. + + + + Creates the Set prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + Called before a linked list node is deleted. + + + + + Gets the internal storage. Used by debugger decoration only. + + + + + The number of elements in the Set. + + + + + Appends a new element with a specified value to the end of the Set. + + The value of the element to add to the Set. + The Set object. + + + + Removes all elements from a Set + + + + + Removes the specified value from the Set. + + The value of the element to remove from the Set. + true if an element in the Set object has been removed successfully; + otherwise false. + + + + Returns a new array iterator object that contains the key/value pairs for each index in + the array. + + An array iterator object that contains the key/value pairs for each index in + the array. + + + + Executes a provided function once per each value in the Set, in insertion order. + + Function to execute for each element. + Value to use as this when executing callback. + + + + Returns a boolean indicating whether an element with the specified value exists in the + Set or not. + + The value to test for presence in the Set. + true if an element with the specified value exists in the Set object; + otherwise false. + + + + Returns a new array iterator object that contains the keys for each index in the array. + + An array iterator object that contains the keys for each index in the array. + + + + Returns a new array iterator object that contains the values for each index in the + array. + + An array iterator object that contains the values for each index in the + array. + + + + Implements the SameValueZero comparison operation. + + + + + Represents an iteration over a Set. + + + + + Creates a new set iterator. + + The next object in the prototype chain. + The set to iterate over. + The linked list to iterate over. + The type of values to return. + + + + Creates the array iterator prototype object. + + The script environment. + + + + Called before a linked list node is deleted. + + The node that is being deleted. + + + + The tag value that is used by the base implementation of toString(). + + + + + Moves the iterator to the next element in the array. + + An object containing two properies: value and done. + + + + Gets wheter the end is reached. Used by debugger decoration only. + + + + + Gets current index. Used by debugger decoration only. + + + + + Gets what is iterated - key, value or both. + + + + + Gets the iterated Set. + + + + + Represents the built-in javascript String object. + + + + + Creates a new String object. + + The next object in the prototype chain. + + + + Called when the String object is invoked like a function, e.g. var x = String(). + Returns an empty string. + + + + + Called when the String object is invoked like a function, e.g. var x = String(NaN). + Converts the given argument into a string value (not a String object). + + + + + Creates a new String instance and initializes it to the empty string. + + + + + Creates a new String instance and initializes it to the given value. + + The value to initialize to. + + + + Returns a string created by using the specified sequence of Unicode values. + + An array of 16-bit character codes. + + + + + Returns a string created by using the specified sequence of Unicode codepoints. + + The script engine. + An array of unicode code points. + + + + + A tag function of template literals which is used to get the raw string form of + template strings (that is, the original, uninterpreted text). + + The script engine. + Well-formed template call site object e.g. { raw: ['one', 'two'] }. + Contains substitution values. + A formatted string containing the raw template literal text (with + substitutions included). + + + + Represents an instance of the JavaScript string object. + + + + + Creates a new string instance. + + The next object in the prototype chain. + The value to initialize the instance. + + + + Creates the string prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + Gets the primitive value of this object. + + + + + Gets the number of characters in the string. + + + + + Gets a descriptor for the property with the given array index. + + The array index of the property. + A property descriptor containing the property value and attributes. + The prototype chain is not searched. + + + + Defines or redefines the value and attributes of a property. The prototype chain is + not searched so if the property exists but only in the prototype chain a new property + will be created. + + The property key of the property to modify. + The property value and attributes. + true to throw an exception if the property could not + be set. This can happen if the property is not configurable or the object is sealed. + true if the property was successfully modified; false otherwise. + + + + Gets an enumerable list of every property name associated with this object. + Does not include properties in the prototype chain. + + + + + Returns the character at the specified index. + + The string that is being operated on. + The character position (starts at 0). + + + + + Returns a number indicating the 16-bit UTF-16 character code at the given index. + + The string that is being operated on. + The character position (starts at 0). + + + + + Returns a number indicating the Unicode code point of the character at the given index. + + The string that is being operated on. + The character position (starts at 0). + + + + + Combines the text of two or more strings and returns a new string. + + The current script environment. + The string that is being operated on. + The strings to concatenate with this string. + The result of combining this string with the given strings. + + + + Returns true if the calling String object contains the given string. + + The script engine. + The string that is being operated on. + The substring to search for. + The character position within the string to start searching. + true if the substring was found; false otherwise. + + + + Returns the index within the calling String object of the first occurrence of the specified value, or -1 if not found. + + The string that is being operated on. + The substring to search for. + The character position to start searching from. Defaults to 0. + The character position of the start of the substring, if it was found, or -1 if it wasn't. + + + + Returns the index within the calling String object of the specified value, searching + backwards from the end of the string. + + The string that is being operated on. + The substring to search for. + The index of the character to start searching. + The index of the substring, or -1 if not found. + + + + Returns a number indicating whether a reference string comes before or after or is the + same as the given string in sort order. + + The string that is being operated on. + The string to compare with. + -1, 0 or 1 depending on whether the given string comes before or after or is + the same as the given string in sort order. + + + + Finds the first match of the given substring within this string. + + The current script environment. + The string that is being operated on. + The substring or regular expression to search for. + An array containing the matched strings. + + + + Returns a new string whose binary representation is in a particular Unicode normalization form. + + The current ScriptEngine instance. + The string that is being operated on. + A Unicode normalization form. + A new string whose binary representation is in a particular Unicode normalization form. + + + + Wraps the string in double quotes ("). Any existing double quotes in the string are + escaped using the backslash character. + + The string to wrap. + The input string wrapped with double quotes and with existing double quotes + escaped. + + + + Substitutes the given string or regular expression with the given text or the result + of a replacement function. + + The current script environment. + The string that is being operated on. + The substring to replace -or- a regular expression that + matches the text to replace. + The text to substitute -or- a function that + returns the text to substitute. + A copy of this string with text replaced. + + + + Returns a copy of this string with text replaced. + + The string that is being operated on. + The text to search for. + A string containing the text to replace for every successful + match. + A copy of this string with text replaced. + + + + Returns a copy of this string with text replaced using a replacement function. + + The string that is being operated on. + The text to search for. + A function that is called to produce the text to replace + for every successful match. + A copy of this string with text replaced. + + + + Returns the position of the first substring match. + + The current script environment. + The string that is being operated on. + The string or regular expression to search for. + The character position of the first match, or -1 if no match was found. + + + + Extracts a section of the string and returns a new string. + + The string that is being operated on. + The character position to start extracting. + The character position to stop extacting. + A section of the string. + + + + Splits this string into an array of strings by separating the string into substrings. + + The current script environment. + The string that is being operated on. + A string or regular expression that indicates where to split the string. + The maximum number of array items to return. Defaults to unlimited. + An array containing the split strings. + + + + Splits this string into an array of strings by separating the string into substrings. + + The current script environment. + The string that is being operated on. + A string that indicates where to split the string. + The maximum number of array items to return. Defaults to unlimited. + An array containing the split strings. + + + + Returns the characters in a string beginning at the specified location through the specified number of characters. + + The string that is being operated on. + The character position to start extracting. + The number of characters to extract. + A substring of this string. + + + + Returns the characters in a string between two indexes into the string. + + The string that is being operated on. + The character position to start extracting. + The character position to stop extracting. + A substring of this string. + + + + Converts the characters within this string to lowercase while respecting the current + locale. + + A copy of this string with the characters converted to lowercase. + + + + Converts the characters within this string to uppercase while respecting the current + locale. + + A copy of this string with the characters converted to uppercase. + + + + Returns the calling string value converted to lowercase. + + A copy of this string with the characters converted to lowercase. + + + + Returns a string representing the current object. + + A string representing the current object. + + + + Returns the calling string value converted to uppercase. + + A copy of this string with the characters converted to uppercase. + + + + Trims whitespace from the beginning and end of the string. + + + + + + Trims whitespace from the beginning of the string. + + + + + + Trims whitespace from the beginning of the string. + + + + + + Trims whitespace from the beginning of the string. + + + + + + Trims whitespace from the beginning of the string. + + + + + + Returns the underlying primitive value of the current object. + + The underlying primitive value of the current object. + + + + Determines whether a string begins with the characters of another string. + + The string that is being operated on. + The characters to be searched for at the start of this string. + The position at which to begin searching. Defaults to zero. + true if this string starts with the given string, false otherwise. + + + + Determines whether a string ends with the characters of another string. + + The string that is being operated on. + The characters to be searched for at the end of this string. + Search within the string as if the string were only this long. + Defaults to the string's actual length. + true if this string ends with the given string, false otherwise. + + + + Determines whether a string contains the characters of another string. + + The string that is being operated on. + The characters to be searched for. + The position at which to begin searching. Defaults to zero. + true if this string contains the given string, false otherwise. + + + + Repeats this string a number of times and returns the result. + + The current ScriptEngine instance. + The string that is being operated on. + The number of times to repeat the string. Must be zero or higher. + A repeated string. + + + + Returns an iterator that iterates over the code points of the string. + + An iterator for the string instance. + + + + Wraps the string with an anchor tag. + + The string that is being operated on. + The name of the anchor. + + + + + Wraps the string with a big tag. + + The string that is being operated on. + + + + + Wraps the string with a blink tag. + + The string that is being operated on. + + + + + Wraps the string with a bold (b) tag. + + The string that is being operated on. + + + + + Wraps the string with a tt tag. + + + + + + Wraps the string with a font tag that specifies the given color. + + The string that is being operated on. + The color value or name. + + + + + Wraps the string with a font tag that specifies the given font size. + + The string that is being operated on. + The font size, specified as an integer. + + + + + Wraps the string with a italics (i) tag. + + The string that is being operated on. + + + + + Wraps the string with a hyperlink. + + The string that is being operated on. + The hyperlink URL. + + + + + Wraps the string in a small tag. + + The string that is being operated on. + + + + + Wraps the string in a strike tag. + + The string that is being operated on. + + + + + Wraps the string in a sub tag. + + The string that is being operated on. + + + + + Wraps the string in a sup tag. + + The string that is being operated on. + + + + + Determines if the given object can be considered a RegExp-like object. + + The object instance to check. + true if the object instance has [Symbol.match] value that is truthy; + false otherwise. + + + + Represents an iteration over a String. + + + + + Creates a new string iterator. + + The next object in the prototype chain. + The string to iterate over. + + + + Creates the array iterator prototype object. + + The script environment. + + + + The tag value that is used by the base implementation of toString(). + + + + + Moves the iterator to the next element in the array. + + An object containing two properies: value and done. + + + + Gets wheter the end is reached. Used by debugger decoration only. + + + + + Gets current index. Used by debugger decoration only. + + + + + Gets current character. Used by debugger decoration only. + + + + + Represents a symbol primitive. + + + + + Creates a new symbol primitive. + + An optional description of the symbol. + + + + An optional description of the symbol. + + + + + Converts the value to a string. + + + + + + A method that determines if a constructor object recognizes an object as one of the + constructor's instances. Used by the 'instanceof' operator. + + + + + A Boolean valued property that if true indicates that an object should be flattened to + its array elements by Array.prototype.concat. + + + + + Used to override the default iterator for an object. Used by the for-of statement. + + + + + A regular expression method that matches the regular expression against a string. + Used by the String.prototype.match method. + + + + + A regular expression method that replaces matched substrings of a string. Used by the + String.prototype.replace method. + + + + + A regular expression method that returns the index within a string that matches the + regular expression. Used by the String.prototype.search method. + + + + + A function valued property that is the constructor function that is used to create + derived objects. + + + + + A regular expression method that splits a string at the indices that match the regular + expression. Used by the String.prototype.split method. + + + + + Used to override ToPrimitive behaviour. + + + + + Used to customize the behaviour of Object.prototype.toString(). + + + + + An object valued property whose own and inherited property names are property names + that are excluded from the with environment bindings of the associated object. + + + + + Represents the built-in Symbol object. + + + + + Creates a new Symbol object. + + The next object in the prototype chain. + The prototype for instances created by this function. + + + + Called when the Symbol object is invoked like a function, e.g. var x = Symbol(). + + The name or description of the symbol (optional). + + + + Called when the Symbol object is called using new, e.g. var x = new Symbol(). + + + + + Searches for existing symbols in a runtime-wide symbol registry with the given key and + returns it if found. Otherwise a new symbol gets created in the global symbol registry + with this key. + + The key for the symbol (also used for the description of the symbol). + An existing symbol with the given key if found; otherwise, a new symbol is + created and returned. + + + + Retrieves a shared symbol key from the global symbol registry for the given symbol. + + The symbol to find a key for. + A string representing the key for the given symbol if one is found on the + global registry; otherwise, undefined. + + + + Represents an instance of the Symbol object. + + + + + Creates a new symbol instance. + + The next object in the prototype chain. + The symbol primitive. + + + + Initializes the prototype properties. + + The object to set the properties on. + A reference to the constructor that owns the prototype. + + + + Returns a string representing the object. + + A string representing the object. + + + + Returns the primitive value of a Symbol object. + + The primitive value of a Symbol object. + + + + Converts a Symbol object to a primitive value. + + Specifies the conversion behaviour. Must be "default", "string" or "number". + The primitive value of a Symbol object. + + + + The ArrayBuffer object is used to represent a generic, fixed-length raw binary data buffer. + You can not directly manipulate the contents of an ArrayBuffer; instead, you create one of + the typed array objects or a DataView object which represents the buffer in a specific + format, and use that to read and write the contents of the buffer. + + + + + Creates a new array buffer constructor. + + The next object in the prototype chain. + + + + Called when the ArrayBuffer object is invoked like a function, e.g. var x = ArrayBuffer(). + Throws an error. + + + + + Creates a new ArrayBuffer of the given length in bytes. Its contents are initialized + to zero. + + The size, in bytes, of the array buffer to create. + A new ArrayBuffer object of the specified size. + + + + A reference to the constructor function that is used to create derived objects. + + + + + Returns true if is one of the ArrayBuffer views, such as + typed array objects or a DataView; false otherwise. + + The argument to be checked. + true if arg is one of the ArrayBuffer views. + + + + The ArrayBuffer object is used to represent a generic, fixed-length raw binary data buffer. + You can not directly manipulate the contents of an ArrayBuffer; instead, you create one of + the typed array objects or a DataView object which represents the buffer in a specific + format, and use that to read and write the contents of the buffer. + + + + + Creates a new ArrayBuffer instance. + + The next object in the prototype chain. + The size, in bytes, of the array buffer to create. + + + + Creates a new ArrayBuffer instance from an existing buffer. + + The next object in the prototype chain. + The buffer to use. + + + + Creates the ArrayBuffer prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + Gets the internal array for this ArrayBuffer. + + + + + Returns a copy of the buffer data. + + A copy of the buffer data. + + + + Gets the length of an ArrayBuffer in bytes. Returns 0 if this ArrayBuffer has been + detached. + + + + + Returns a new ArrayBuffer whose contents are a copy of this ArrayBuffer's bytes from + begin, inclusive, up to end, exclusive. + + Zero-based byte index at which to begin slicing. + A new ArrayBuffer object. + + + + Returns a new ArrayBuffer whose contents are a copy of this ArrayBuffer's bytes from + begin, inclusive, up to end, exclusive. + + Zero-based byte index at which to begin slicing. + Byte index to end slicing. If end is unspecified, the new + ArrayBuffer contains all bytes from begin to the end of this ArrayBuffer. The range + specified by the begin and end values is clamped to the valid index range for the + current array. If the computed length of the new ArrayBuffer would be negative, it is + clamped to zero. + A new ArrayBuffer object. + + + + The DataView view provides a low-level interface for reading and writing multiple number + types in an ArrayBuffer irrespective of the platform's endianness. + + + + + Creates a new DataView constructor. + + The next object in the prototype chain. + + + + Called when the DataView object is invoked like a function, e.g. var x = DataView(). + Throws an error. + + + + + Creates a new DataView. + + An existing ArrayBuffer to use as the storage for the new + DataView object. + The offset, in bytes, to the first byte in the specified + buffer for the new view to reference. If not specified, the view of the buffer will + start with the first byte. + The number of elements in the byte array. If unspecified, + length of the view will match the buffer's length. + A new DataView object of the specified size. + + + + The DataView view provides a low-level interface for reading and writing multiple number + types in an ArrayBuffer irrespective of the platform's endianness. + + + + + Creates a new DataView instance. + + The next object in the prototype chain. + An existing ArrayBuffer to use as the storage for the new + DataView object. + The offset, in bytes, to the first byte in the specified + buffer for the new view to reference. If not specified, the view of the buffer will + start with the first byte. + The number of elements in the byte array. If unspecified, + length of the view will match the buffer's length. + + + + Creates the DataView prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + The ArrayBuffer referenced by the DataView at construction time. + + + + + The offset (in bytes) of this view from the start of its ArrayBuffer. + + + + + The length (in bytes) of this view from the start of its ArrayBuffer. + + + + + Gets a 32-bit floating point number at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + read the data. + Indicates whether the number is stored in little- or + big-endian format. If false or undefined, a big-endian value is read. + The 32-bit floating point number at the specified byte offset from the start + of the DataView. + + + + Gets a 64-bit floating point number at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + read the data. + Indicates whether the number is stored in little- or + big-endian format. If false or undefined, a big-endian value is read. + The 64-bit floating point number at the specified byte offset from the start + of the DataView. + + + + Gets a signed 16-bit integer at the specified byte offset from the start of the DataView. + + The offset, in bytes, from the start of the view where to + read the data. + Indicates whether the number is stored in little- or + big-endian format. If false or undefined, a big-endian value is read. + The signed 16-bit integer at the specified byte offset from the start of the + DataView. + + + + Gets a signed 32-bit integer at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + read the data. + Indicates whether the number is stored in little- or + big-endian format. If false or undefined, a big-endian value is read. + The signed 32-bit integer at the specified byte offset from the start + of the DataView. + + + + Gets a signed 64-bit integer at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + read the data. + Indicates whether the number is stored in little- or + big-endian format. If false or undefined, a big-endian value is read. + The signed 64-bit integer at the specified byte offset from the start + of the DataView. + + + + Gets a signed 8-bit integer (byte) at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + read the data. + The signed 8-bit integer (byte) at the specified byte offset from the start + of the DataView. + + + + Gets an unsigned 8-bit integer (byte) at the specified byte offset from the start of + the DataView. + + The offset, in bytes, from the start of the view where to + read the data. + Indicates whether the number is stored in little- or + big-endian format. If false or undefined, a big-endian value is read. + The unsigned 8-bit integer (byte) at the specified byte offset from the start + of the DataView. + + + + Gets an unsigned 32-bit integer at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + read the data. + Indicates whether the number is stored in little- or + big-endian format. If false or undefined, a big-endian value is read. + The unsigned 32-bit integer at the specified byte offset from the start + of the DataView. + + + + Gets an unsigned 8-bit integer (byte) at the specified byte offset from the start of + the DataView. + + The offset, in bytes, from the start of the view where to + read the data. + The unsigned 8-bit integer (byte) at the specified byte offset from the start + of the DataView. + + + + Stores a signed 32-bit float value at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + store the data. + The value to set. + Indicates whether the 32-bit float is stored in little- or + big-endian format. If false or undefined, a big-endian value is written. + + + + Stores a signed 64-bit float value at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + store the data. + The value to set. + Indicates whether the 64-bit float is stored in little- or + big-endian format. If false or undefined, a big-endian value is written. + + + + Stores a signed 16-bit integer value at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + store the data. + The value to set. + Indicates whether the 32-bit float is stored in little- or + big-endian format. If false or undefined, a big-endian value is written. + + + + Stores a signed 32-bit integer value at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + store the data. + The value to set. + Indicates whether the 32-bit float is stored in little- or + big-endian format. If false or undefined, a big-endian value is written. + + + + Stores a signed 8-bit integer value at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + store the data. + The value to set. + + + + Stores an unsigned 16-bit integer value at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + store the data. + The value to set. + Indicates whether the 32-bit float is stored in little- or + big-endian format. If false or undefined, a big-endian value is written. + + + + Stores an unsigned 32-bit integer value at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + store the data. + The value to set. + Indicates whether the 32-bit float is stored in little- or + big-endian format. If false or undefined, a big-endian value is written. + + + + Stores an unsigned 8-bit integer value at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + store the data. + The value to set. + + + + Stores a series of bytes at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + store the data. + The bytes to store. + Indicates whether the bytes are stored in little- or + big-endian format. If false, a big-endian value is written. + + + + Represents the built-in javascript String object. + + + + + Creates a new typed array constructor. + + The next object in the prototype chain. + Defines the element type and behaviour of the typed array. + The result of calling . + + + + The data storage size, in bytes, of each array element. + + + + + Creates a new typed array from a .NET array. + + A .NET array + A new typed array instance. + + + + A reference to the constructor function that is used to create derived objects. + + + + + Called when the typed array object is invoked like a function, e.g. Int8Array(). + Throws an error. + + + + + Creates a new (empty) typed array instance. + + A new typed array instance. + + + + Creates a new typed array instance. + + Either the length of the new array, or buffer, or an array-like + object. + The offset, in bytes, to the first byte in the specified + buffer for the new view to reference. If not specified, the TypedArray will start + with the first byte. Ignored unless the first parameter is a array buffer. + The length (in elements) of the typed array. Ignored unless the + first parameter is a array buffer. + A new typed array instance. + + + + Creates a new typed array from an array-like or iterable object. + + An array-like or iterable object to convert to a typed array. + Optional. Map function to call on every element of the typed array. + Optional. Value to use as this when executing mapFn. + A new typed array instance. + + + + Creates a new typed array with a variable number of elements. + + Elements of which to create the typed array. + A new typed array with the given elements. + + + + Represents a typed array instance. + + + + + Creates a new typed array instance. + + The next object in the prototype chain. + Defines the element type and behaviour of the typed array. + An existing ArrayBuffer to use as the storage for the new + TypedArray object. + The offset, in bytes, to the first byte in the specified + buffer for the new view to reference. If not specified, the TypedArray will start + with the first byte. + The length (in elements) of the typed array. + + + + Creates the TypedArray prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + The result of calling . + + + + Speeds up initialization by only calling GetDeclarativeProperties once. + + + + + + + The type of each element in the array. + + + + + Gets or sets the item at the given index. + + The array index. + The value of the item at the given index. + + + + The data storage size, in bytes, of each array element. + + + + + The ArrayBuffer referenced by the TypedArray at construction time. + + + + + The offset (in bytes) of the typed array from the start of its ArrayBuffer. + + + + + The length (in bytes) of the typed array from the start of its ArrayBuffer. + + + + + The length (in elements) of the typed array. + + + + + The length (in elements) of the typed array. + + + + + Gets a descriptor for the property with the given array index. + + The array index of the property. + A property descriptor containing the property value and attributes. + The prototype chain is not searched. + + + + Sets the value of the property with the given array index. If a property with the + given index does not exist, or exists in the prototype chain (and is not a setter) then + a new property is created. + + The array index of the property to set. + The value to set the property to. This must be a javascript + primitive (double, string, etc) or a class derived from . + The value of the "this" keyword inside a getter. + true to throw an exception if the property could not + be set. This can happen if the property is read-only or if the object is sealed. + false if is false and an error + occurred; true otherwise. + + + + Deletes the property with the given array index. + + The array index of the property to delete. + true to throw an exception if the property could not + be set because the property was marked as non-configurable. + true if the property was successfully deleted, or if the property did + not exist; false if the property was marked as non-configurable and + was false. + + + + Returns a new array iterator object that contains the key/value pairs for each index in + the array. + + An array iterator object that contains the key/value pairs for each index in + the array. + + + + Returns a new array iterator object that contains the keys for each index in the array. + + An array iterator object that contains the keys for each index in the array. + + + + Returns a new typed array on the same ArrayBuffer store and with the same element types + as for this TypedArray object. The begin offset is inclusive and the end offset is + exclusive. + + Element to begin at. The offset is inclusive. + Element to end at. The offset is exclusive. If not specified, all + elements from the one specified by begin to the end of the array are included in the + new view. + A new typed array that shares the same ArrayBuffer store. + + + + Returns a new array iterator object that contains the values for each index in the + array. + + An array iterator object that contains the values for each index in the + array. + + + + Implements an adapter for typed arrays. + + + + + Creates a new TypedArrayWrapper instance. + + The typed array that is being wrapped. + + + + Gets or sets an array element within the range 0 .. Length-1 (inclusive). + + The index to get or set. + The value at the given index. + + + + Deletes the value at the given array index, throwing an exception on error. + + The array index to delete. + + + + Indicates whether the array index exists (has a value). + + The index to check. + true if the index exists, false otherwise. + + + + Creates a new array of the same type as this one. + + The values in the new array. + A new array object. + + + + Convert an untyped value to a typed value. + + The value to convert. + The value converted to a typed value. + + + + Copies the sequence of array elements within the array to the position starting at + target. The copy is taken from the index positions of the second and third arguments + start and end. The end argument is optional and defaults to the length of the array. + This method has the same algorithm as Array.prototype.copyWithin. + + Target start index position where to copy the elements to. + Source start index position where to start copying elements from. + Optional. Source end index position where to end copying elements from. + The array that was operated on. + + + + Determines if every element of the array matches criteria defined by the given user- + defined function. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + true if every element of the array matches criteria defined by the + given user-defined function; false otherwise. + + + + Fills all the elements of a typed array from a start index to an end index with a + static value. + + The value to fill the typed array with. + Optional. Start index. Defaults to 0. + Optional. End index (exclusive). Defaults to the length of the array. + The array that is being operated on. + + + + Creates a new array with the elements from this array that pass the test implemented by + the given function. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + A copy of this array but with only those elements which produce true + when passed to the provided function. + + + + Returns the first element in the given array that passes the test implemented by the + given function. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + The first element that results in the callback returning true. + + + + Returns an index in the typed array, if an element in the typed array satisfies the + provided testing function. Otherwise -1 is returned. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + The first element that results in the callback returning true. + + + + Calls the given user-defined function once per element in the array. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. + The value of this in the context of the callback function. + + + + Returns the index of the given search element in the array, starting from + . + + The value to search for. + The array index to start searching. + The index of the given search element in the array, or -1 if the + element wasn't found. + + + + Concatenates all the elements of the array, using the specified separator between each + element. If no separator is provided, a comma is used for this purpose. + + The string to use as a separator. + A string that consists of the element values separated by the separator string. + + + + Returns the index of the given search element in the array, searching backwards from + the end of the array. + + The value to search for. + The index of the given search element in the array, or -1 if the + element wasn't found. + + + + Returns the index of the given search element in the array, searching backwards from + . + + The value to search for. + The array index to start searching. + The index of the given search element in the array, or -1 if the + element wasn't found. + + + + Creates a new array with the results of calling the given function on every element in + this array. + + A user-defined function that is called for each element + in the array. This function is called with three arguments: the value of the element, + the index of the element, and the array that is being operated on. The value that is + returned from this function is stored in the resulting array. + The value of this in the context of the callback function. + A new array with the results of calling the given function on every element + in the array. + + + + Accumulates a single value by calling a user-defined function for each element. + + A user-defined function that is called for each element + in the array. This function is called with four arguments: the current accumulated + value, the value of the element, the index of the element, and the array that is being + operated on. The return value for this function is the new accumulated value and is + passed to the next invocation of the function. + The initial accumulated value. + The accumulated value returned from the last invocation of the callback + function. + + + + Accumulates a single value by calling a user-defined function for each element + (starting with the last element in the array). + + A user-defined function that is called for each element + in the array. This function is called with four arguments: the current accumulated + value, the value of the element, the index of the element, and the array that is being + operated on. The return value for this function is the new accumulated value and is + passed to the next invocation of the function. + The initial accumulated value. + The accumulated value returned from the last invocation of the callback + function. + + + + Reverses the order of the elements in the array. + + The array that is being operated on. + + + + Stores multiple values in the typed array, reading input values from a specified array. + + The array from which to copy values. All values from the source + array are copied into the target array, unless the length of the source array plus the + offset exceeds the length of the target array, in which case an exception is thrown. + The offset into the target array at which to begin writing values + from the source array. If you omit this value, 0 is assumed (that is, the source array + will overwrite values in the target array starting at index 0). + + + + Returns a section of an array. + + The index of the first element in the section. If this value is + negative it is treated as an offset from the end of the array. + The index of the element just past the last element in the section. + If this value is negative it is treated as an offset from the end of the array. If + is less than or equal to then an empty + array is returned. + A section of an array. + + + + Determines if at least one element of the array matches criteria defined by the given + user-defined function. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + true if at least one element of the array matches criteria defined by + the given user-defined function; false otherwise. + + + + Sorts the array. + + A function which determines the order of the + elements. This function should return a number less than zero if the first argument is + less than the second argument, zero if the arguments are equal or a number greater than + zero if the first argument is greater than Defaults to an ascending ASCII ordering. + The array that was sorted. + + + + Returns a locale-specific string representing this object. + + A locale-specific string representing this object. + + + + Returns a string representing this object. + + The array that is being operated on. + A string representing this object. + + + + Defines the element type and behaviour of typed array. + + + + + An array of signed 8-bit elements. + + + + + An array of unsigned 8-bit elements. + + + + + An array of unsigned 8-bit elements, clamped to 0-255. + + + + + An array of signed 16-bit elements. + + + + + An array of unsigned 16-bit elements. + + + + + An array of signed 32-bit elements. + + + + + An array of unsigned 32-bit elements. + + + + + An array of 32-bit floating point elements. + + + + + An array of 64-bit floating point elements. + + + + + The WeakMap object is a collection of key/value pairs in which the keys are weakly + referenced. The keys must be objects and the values can be arbitrary values. + + + + + Creates a new map constructor. + + The next object in the prototype chain. + + + + Called when the WeakMap object is invoked like a function, e.g. var x = WeakMap(). + Throws an error. + + + + + Creates a new WeakMap. + + An Array or other iterable object whose elements are key-value + pairs (2-element Arrays). Each key-value pair is added to the new WeakMap. null + is treated as undefined. + A new WeakMap object, either empty or initialised with the given values. + + + + The WeakMap object is a collection of key/value pairs in which the keys are weakly + referenced. The keys must be objects and the values can be arbitrary values. + + + + + Creates a new WeakMap instance. + + The next object in the prototype chain. + + + + Creates the WeakMap prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + Removes the specified element from a Map object. + + The key of the element to remove from the Map object. + true if an element in the Map object existed and has been removed, or + false if the element does not exist. + + + + Returns a specified element from a Map object. + + The key of the element to return from the Map object. + The element associated with the specified key, or undefined if the key can't + be found in the Map object. + + + + Returns a boolean indicating whether an element with the specified key exists or not. + + The key of the element to test for presence in the Map object. + true if an element with the specified key exists in the Map object; + otherwise false. + + + + Adds a new element with a specified key and value to a Map object. + + The key of the element to add to the Map object. + The value of the element to add to the Map object. + The WeakMap object. + + + + Gets the internal storage. Used by debugger decoration. + + + + + The WeakSet object lets you store weakly held objects in a collection. + + + + + Creates a new WeakSet constructor. + + The next object in the prototype chain. + + + + Called when the WeakSet object is invoked like a function, e.g. var x = WeakSet(). + Throws an error. + + + + + Creates a new WeakSet instance. + + If an iterable object is passed, all of its elements will be + added to the new WeakSet. null is treated as undefined. + A new WeakSet instance. + + + + The WeakSet object lets you store weakly held objects in a collection. + + + + + Creates a new WeakSet instance. + + The next object in the prototype chain. + + + + Creates the WeakSet prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + Appends a new element with a specified value to the end of the WeakSet. + + The value of the element to add to the WeakSet. + The WeakSet object. + + + + Removes the specified value from the WeakSet. + + The value of the element to remove from the WeakSet. + true if an element in the WeakSet object has been removed + successfully; otherwise false. + + + + Returns a boolean indicating whether an element with the specified value exists in the + WeakSet or not. + + The value to test for presence in the WeakSet. + true if an element with the specified value exists in the WeakSet + object; otherwise false. + + + + Gets the internal storage. Used by debugger decoration. + + + + diff --git a/bin/Release/Stef.Validation.dll b/bin/Release/Stef.Validation.dll new file mode 100755 index 0000000..0f56674 Binary files /dev/null and b/bin/Release/Stef.Validation.dll differ diff --git a/bin/Release/TYTD.Api.dll b/bin/Release/TYTD.Api.dll index d60ddbe..e15892e 100644 Binary files a/bin/Release/TYTD.Api.dll and b/bin/Release/TYTD.Api.dll differ diff --git a/bin/Release/YoutubeExplode.Extensions.dll b/bin/Release/YoutubeExplode.Extensions.dll new file mode 100755 index 0000000..2b49d40 Binary files /dev/null and b/bin/Release/YoutubeExplode.Extensions.dll differ diff --git a/bin/Release/youtube-downloader.exe b/bin/Release/youtube-downloader.exe index 9548b9e..c3fa807 100644 Binary files a/bin/Release/youtube-downloader.exe and b/bin/Release/youtube-downloader.exe differ diff --git a/mono_crash.19446631cd.0.json b/mono_crash.19446631cd.0.json new file mode 100644 index 0000000..e0603ca --- /dev/null +++ b/mono_crash.19446631cd.0.json @@ -0,0 +1,3592 @@ +{ + "protocol_version" : "0.0.6", + "configuration" : { + "version" : "(6.12.0.122) (tarball)", + "tlc" : "__thread", + "sigsgev" : "altstack", + "notifications" : "epoll", + "architecture" : "amd64", + "disabled_features" : "none", + "smallconfig" : "disabled", + "bigarrays" : "disabled", + "softdebug" : "enabled", + "interpreter" : "enabled", + "llvm_support" : "610", + "suspend" : "hybrid" + }, + "memory" : { + "minor_gc_time" : "3417968", + "major_gc_time" : "673443", + "minor_gc_count" : "96", + "major_gc_count" : "5", + "major_gc_time_concurrent" : "2199727" + }, + "threads" : [ + { + "is_managed" : true, + "offset_free_hash" : "0x543be115d", + "offset_rich_hash" : "0x543be1342", + "crashed" : false, + "native_thread_id" : "0x7fc0d87ff640", + "thread_info_addr" : "0x7fc0a8000b60", + "thread_name" : "RequestBuilder ", + "ctx" : { + "IP" : "0x7fc0dfba231e", + "SP" : "0x7fc0d87fe1a0", + "BP" : "(nil)" + }, + "managed_frames" : [ + { + "is_managed" : "false", + "native_address" : "unregistered" + } +, + { + "is_managed" : "true", + "guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0x99dbfea7", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", + "token" : "0x6001ef1", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0x99dbfea7", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", + "token" : "0x6001e40", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0x99dbfea7", + "il_offset" : "0x000d9" + } +, + { + "is_managed" : "true", + "guid" : "9C6E2CB7-DDD8-473F-A420-642DDCF7CE48", + "token" : "0x6003b86", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x286000", + "timestamp" : "0xe193f384", + "il_offset" : "0x00067" + } +, + { + "is_managed" : "true", + "guid" : "9C6E2CB7-DDD8-473F-A420-642DDCF7CE48", + "token" : "0x600427a", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x286000", + "timestamp" : "0xe193f384", + "il_offset" : "0x0004d" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x6002267", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x0002e" + } +, + { + "is_managed" : "true", + "guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0x99dbfea7", + "il_offset" : "0x0002a" + } + + ], + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x5620028704c9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a56319", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a57655", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a606c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x5620028c55b5", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7fc0dfba01f0", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7fc0dfba231e", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7fc0dfb9b540", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002b0befd", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a6aaec", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a6c0ff", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002aa59cd", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x5620029f30d6", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0x99dbfea7", + "il_offset" : "0x00000" + } + + ] +}, +{ + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7fc0dadf4640", + "thread_info_addr" : "0x7fc0d0000f80", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7fc0dfba231e", + "SP" : "0x7fc0dadf3be0", + "BP" : "(nil)" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x5620028704c9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a56319", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a57655", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a606c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x5620028c55b5", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7fc0dfba01f0", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7fc0dfba231e", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7fc0dfb9e643", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002ab17bd", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a5ffdc", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7fc0dfb95450", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7fc0df733d53", + "native_offset" : "0x00000" + } + + ] +}, +{ + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7fc0da9f2640", + "thread_info_addr" : "0x7fc0c8003e60", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7fc0dfba231e", + "SP" : "0x7fc0da9f1be0", + "BP" : "(nil)" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x5620028704c9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a56319", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a57655", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a606c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x5620028c55b5", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7fc0dfba01f0", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7fc0dfba231e", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7fc0dfb9e643", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002ab17bd", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a5ffdc", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7fc0dfb95450", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7fc0df733d53", + "native_offset" : "0x00000" + } + + ] +}, +{ + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7fc0a2d12640", + "thread_info_addr" : "0x7fc098002bc0", + "thread_name" : "Thread Pool I/O", + "ctx" : { + "IP" : "0x7fc0df72822f", + "SP" : "0x7fc0a2d11c00", + "BP" : "0x7fc0a2d11c30" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x5620028704c9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a56319", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a57655", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a606c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x5620028c55b5", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7fc0dfba01f0", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7fc0df72822f", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a63308", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a642f8", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a5ffdc", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7fc0dfb95450", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7fc0df733d53", + "native_offset" : "0x00000" + } + + ] +}, +{ + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7fc0da2e7640", + "thread_info_addr" : "0x7fc0c013dc70", + "thread_name" : "mono", + "ctx" : { + "IP" : "0x7fc0dfba231e", + "SP" : "0x7fc0da2e6ac0", + "BP" : "(nil)" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x5620028704c9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a56319", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a57655", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a606c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x5620028c55b5", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7fc0dfba01f0", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7fc0dfba231e", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7fc0dfb9b99e", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002b0be9b", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002b16948", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002ab2542", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x562002a5ffdc", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7fc0dfb95450", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7fc0df733d53", + "native_offset" : "0x00000" + } + + ] +}, +{ + "is_managed" : true, + "offset_free_hash" : "0x168be95371", + "offset_rich_hash" : "0x168be95b82", + "crashed" : false, + "native_thread_id" : "0x7fc0a2910640", + "thread_info_addr" : "0x7fc0d0009e00", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7fc0dc18aaf1", + "SP" : "0x7fc0a290ea20", + "BP" : "0x7fc0a290eac0" + }, + "managed_frames" : [ + { + "is_managed" : "true", + "guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", + "token" : "0x60066da", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0x99dbfea7", + "il_offset" : "0x0000c" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x600184f", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00006" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x600186b", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00011" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x6002113", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00022" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x6002112", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x60004a3", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00040" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x60004a2", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00076" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x600048b", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x0009f" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x6000485", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x0009b" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x6000411", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00019" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x6000410", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x6001630", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00008" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x600162f", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00045" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x6001628", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00045" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x6001620", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00076" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00032" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x600161f", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x60015f1", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x0000e" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x60015ee", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x0000e" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x6001630", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00008" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x600162f", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00045" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x6001628", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00045" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x6001620", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00076" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00032" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x60016bf", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00012" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x60016bd", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x001a4" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x60016bc", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00046" + } +, + { + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x60016e3", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "A16933CF-9E48-4904-9C1D-E207A5A16EC2", + "token" : "0x600012f", + "native_offset" : "0x0", + "filename" : "System.Threading.Tasks.Dataflow.dll", + "sizeofimage" : "0x2c000", + "timestamp" : "0x5afb3dfb", + "il_offset" : "0x00008" + } +, + { + "is_managed" : "true", + "guid" : "A16933CF-9E48-4904-9C1D-E207A5A16EC2", + "token" : "0x6000145", + "native_offset" : "0x0", + "filename" : "System.Threading.Tasks.Dataflow.dll", + "sizeofimage" : "0x2c000", + "timestamp" : "0x5afb3dfb", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "A16933CF-9E48-4904-9C1D-E207A5A16EC2", + "token" : "0x600045a", + "native_offset" : "0x0", + "filename" : "System.Threading.Tasks.Dataflow.dll", + "sizeofimage" : "0x2c000", + "timestamp" : "0x5afb3dfb", + "il_offset" : "0x00105" + } +, + { + "is_managed" : "true", + "guid" : "A16933CF-9E48-4904-9C1D-E207A5A16EC2", + "token" : "0x6000476", + "native_offset" : "0x0", + "filename" : "System.Threading.Tasks.Dataflow.dll", + "sizeofimage" : "0x2c000", + "timestamp" : "0x5afb3dfb", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0x99dbfea7", + "il_offset" : "0x0002a" + } + + ], +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x5620028704c9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x562002a56319", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x562002a57655", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x562002a606c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x5620028c55b5", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7fc0dfba01f0", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", + "token" : "0x60066da", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0x99dbfea7", + "il_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x58fc2b4ac", +"offset_rich_hash" : "0x58fc2b6e1", +"crashed" : false, +"native_thread_id" : "0x7fc0d97ff640", +"thread_info_addr" : "0x7fc0b8021fe0", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7fc0dfba231e", + "SP" : "0x7fc0d97fd890", + "BP" : "(nil)" +}, +"managed_frames" : [ +{ + "is_managed" : "false", + "native_address" : "unregistered" + } +, +{ + "is_managed" : "true", + "guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0x99dbfea7", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x6000cbd", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00053" + } +, +{ + "is_managed" : "true", + "guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", + "token" : "0x6000bd2", + "native_offset" : "0x0", + "filename" : "Microsoft.Build.dll", + "sizeofimage" : "0x1e6000", + "timestamp" : "0xd74c9315", + "il_offset" : "0x00008" + } +, +{ + "is_managed" : "true", + "guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", + "token" : "0x60000a0", + "native_offset" : "0x0", + "filename" : "MonoDevelop.MSBuildBuilder.exe", + "sizeofimage" : "0x14000", + "timestamp" : "0xde5f999a", + "il_offset" : "0x00065" + } +, +{ + "is_managed" : "true", + "guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", + "token" : "0x6000178", + "native_offset" : "0x0", + "filename" : "MonoDevelop.MSBuildBuilder.exe", + "sizeofimage" : "0x14000", + "timestamp" : "0xde5f999a", + "il_offset" : "0x0012f" + } +, +{ + "is_managed" : "true", + "guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", + "token" : "0x6000085", + "native_offset" : "0x0", + "filename" : "MonoDevelop.MSBuildBuilder.exe", + "sizeofimage" : "0x14000", + "timestamp" : "0xde5f999a", + "il_offset" : "0x0001c" + } +, +{ + "is_managed" : "true", + "guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0x99dbfea7", + "il_offset" : "0x0002a" + } + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x5620028704c9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a56319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a57655", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a606c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620028c55b5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba01f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba231e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfb9b540", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002b0befd", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a6aaec", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a6c0ff", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a6c7f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a5d54d", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620029f5223", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7fc0a1d0a640", +"thread_info_addr" : "0x7fc0bc00bc90", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7fc0dfba231e", +"SP" : "0x7fc0a1d09be0", +"BP" : "(nil)" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x5620028704c9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a56319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a57655", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a606c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620028c55b5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba01f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba231e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfb9e643", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002ab17bd", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a5ffdc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfb95450", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0df733d53", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7fc0a210c640", +"thread_info_addr" : "0x7fc0c4161000", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7fc0dfba231e", +"SP" : "0x7fc0a210bbe0", +"BP" : "(nil)" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x5620028704c9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a56319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a57655", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a606c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620028c55b5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba01f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba231e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfb9e643", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002ab17bd", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a5ffdc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfb95450", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0df733d53", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x19446631cd", +"offset_rich_hash" : "0x1944664cc8", +"crashed" : true, +"native_thread_id" : "0x7fc0d9298640", +"thread_info_addr" : "0x7fc0a4000b60", +"thread_name" : "RequestBuilder ", +"ctx" : { +"IP" : "0x56200299dcb8", +"SP" : "0x7fc0d92944a0", +"BP" : "0xc354f02" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x6004ba7", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x6004c37", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "984A2982-ED90-47B7-AD22-E07A10E379D4", +"token" : "0x6000196", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x16a000", +"timestamp" : "0xdd55468c", +"il_offset" : "0x0000d" +} +, +{ +"is_managed" : "true", +"guid" : "984A2982-ED90-47B7-AD22-E07A10E379D4", +"token" : "0x600018a", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x16a000", +"timestamp" : "0xdd55468c", +"il_offset" : "0x0001c" +} +, +{ +"is_managed" : "true", +"guid" : "984A2982-ED90-47B7-AD22-E07A10E379D4", +"token" : "0x6001186", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x16a000", +"timestamp" : "0xdd55468c", +"il_offset" : "0x0000d" +} +, +{ +"is_managed" : "true", +"guid" : "984A2982-ED90-47B7-AD22-E07A10E379D4", +"token" : "0x60014be", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x16a000", +"timestamp" : "0xdd55468c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x600652a", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "984A2982-ED90-47B7-AD22-E07A10E379D4", +"token" : "0x600018d", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x16a000", +"timestamp" : "0xdd55468c", +"il_offset" : "0x00006" +} +, +{ +"is_managed" : "true", +"guid" : "984A2982-ED90-47B7-AD22-E07A10E379D4", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x16a000", +"timestamp" : "0xdd55468c", +"il_offset" : "0x0005c" +} +, +{ +"is_managed" : "true", +"guid" : "984A2982-ED90-47B7-AD22-E07A10E379D4", +"token" : "0x600093c", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x16a000", +"timestamp" : "0xdd55468c", +"il_offset" : "0x00010" +} +, +{ +"is_managed" : "true", +"guid" : "984A2982-ED90-47B7-AD22-E07A10E379D4", +"token" : "0x6000250", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x16a000", +"timestamp" : "0xdd55468c", +"il_offset" : "0x00023" +} +, +{ +"is_managed" : "true", +"guid" : "984A2982-ED90-47B7-AD22-E07A10E379D4", +"token" : "0x6000252", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x16a000", +"timestamp" : "0xdd55468c", +"il_offset" : "0x0003a" +} +, +{ +"is_managed" : "true", +"guid" : "984A2982-ED90-47B7-AD22-E07A10E379D4", +"token" : "0x600025e", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x16a000", +"timestamp" : "0xdd55468c", +"il_offset" : "0x000ea" +} +, +{ +"is_managed" : "true", +"guid" : "984A2982-ED90-47B7-AD22-E07A10E379D4", +"token" : "0x600025d", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x16a000", +"timestamp" : "0xdd55468c", +"il_offset" : "0x0000a" +} +, +{ +"is_managed" : "true", +"guid" : "984A2982-ED90-47B7-AD22-E07A10E379D4", +"token" : "0x600025c", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x16a000", +"timestamp" : "0xdd55468c", +"il_offset" : "0x00038" +} +, +{ +"is_managed" : "true", +"guid" : "984A2982-ED90-47B7-AD22-E07A10E379D4", +"token" : "0x60002fe", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x16a000", +"timestamp" : "0xdd55468c", +"il_offset" : "0x005cf" +} +, +{ +"is_managed" : "true", +"guid" : "984A2982-ED90-47B7-AD22-E07A10E379D4", +"token" : "0x600030f", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x16a000", +"timestamp" : "0xdd55468c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", +"token" : "0x60014e6", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1e6000", +"timestamp" : "0xd74c9315", +"il_offset" : "0x00029" +} +, +{ +"is_managed" : "true", +"guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", +"token" : "0x6002296", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1e6000", +"timestamp" : "0xd74c9315", +"il_offset" : "0x002a9" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x6004619", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", +"token" : "0x6001387", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1e6000", +"timestamp" : "0xd74c9315", +"il_offset" : "0x00046" +} +, +{ +"is_managed" : "true", +"guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", +"token" : "0x6002291", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1e6000", +"timestamp" : "0xd74c9315", +"il_offset" : "0x00065" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x6004619", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", +"token" : "0x6001385", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1e6000", +"timestamp" : "0xd74c9315", +"il_offset" : "0x00046" +} +, +{ +"is_managed" : "true", +"guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", +"token" : "0x600228d", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1e6000", +"timestamp" : "0xd74c9315", +"il_offset" : "0x001b8" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x6004619", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", +"token" : "0x6001380", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1e6000", +"timestamp" : "0xd74c9315", +"il_offset" : "0x0003d" +} +, +{ +"is_managed" : "true", +"guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", +"token" : "0x600228b", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1e6000", +"timestamp" : "0xd74c9315", +"il_offset" : "0x001a9" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x6004619", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", +"token" : "0x600137f", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1e6000", +"timestamp" : "0xd74c9315", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", +"token" : "0x6002289", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1e6000", +"timestamp" : "0xd74c9315", +"il_offset" : "0x0018b" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x6004619", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", +"token" : "0x600137a", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1e6000", +"timestamp" : "0xd74c9315", +"il_offset" : "0x00061" +} +, +{ +"is_managed" : "true", +"guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", +"token" : "0x6002287", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1e6000", +"timestamp" : "0xd74c9315", +"il_offset" : "0x0005f" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x6004619", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", +"token" : "0x6001354", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1e6000", +"timestamp" : "0xd74c9315", +"il_offset" : "0x00046" +} +, +{ +"is_managed" : "true", +"guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", +"token" : "0x6002285", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1e6000", +"timestamp" : "0xd74c9315", +"il_offset" : "0x002b7" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x600460e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", +"token" : "0x600134d", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1e6000", +"timestamp" : "0xd74c9315", +"il_offset" : "0x0003d" +} +, +{ +"is_managed" : "true", +"guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", +"token" : "0x600227f", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1e6000", +"timestamp" : "0xd74c9315", +"il_offset" : "0x00429" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x60024e2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", +"token" : "0x6002267", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1e6000", +"timestamp" : "0xd74c9315", +"il_offset" : "0x0001a" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x5620028704c9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a56319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a57655", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a6082c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620028c62a7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620028c64b9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620028727af", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620028bfb13", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x56200299dcb8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620029a06ab", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620029d90f1", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620029e70d0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x208aa6d2f", +"offset_rich_hash" : "0x208aa6d59", +"crashed" : false, +"native_thread_id" : "0x7fc0d85fe640", +"thread_info_addr" : "0x7fc09c000b60", +"thread_name" : "Timer-Scheduler", +"ctx" : { +"IP" : "0x7fc0dfba231e", +"SP" : "0x7fc0d85fce60", +"BP" : "(nil)" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x5620028704c9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a56319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a57655", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a606c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620028c55b5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba01f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba231e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfb9b99e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002b0be9b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a6aaec", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a6c159", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a6c7f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a5d54d", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620029f5223", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7fc0df61b000", +"thread_info_addr" : "0x562004a4e440", +"thread_name" : "mono", +"ctx" : { +"IP" : "0x7fc0dfba231e", +"SP" : "0x7ffe15f8cf20", +"BP" : "(nil)" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x5620028704c9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a56319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a57655", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a606c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620028c55b5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba01f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba231e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfb9b540", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002b018af", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002b17124", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a5714c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a5afc2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002846f7b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002835f1c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0df644565", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x56200283653a", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x8b938900f", +"offset_rich_hash" : "0x8b938927c", +"crashed" : false, +"native_thread_id" : "0x7fc0a3cf7640", +"thread_info_addr" : "0x7fc0b40056d0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7fc0dfba231e", +"SP" : "0x7fc0a3cf53c0", +"BP" : "(nil)" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x6000084", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x000ef" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x600009d", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x0006e" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x600007b", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x0006d" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x0002a" +} +, +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x0000c" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x60048c9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x6000039", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x00019" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x6000166", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x00029" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x6000181", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x00001" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x5620028704c9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a56319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a57655", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a606c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620028c55b5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba01f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba231e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfb9b540", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002b0befd", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a6aaec", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a6c0ff", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a6c7f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a5d54d", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620029f5223", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x3fa205b50", +"offset_rich_hash" : "0x3fa205bc1", +"crashed" : false, +"native_thread_id" : "0x7fc0d995f640", +"thread_info_addr" : "0x7fc0ac000b60", +"thread_name" : "In-proc Node (D", +"ctx" : { +"IP" : "0x7fc0dfba231e", +"SP" : "0x7fc0d995de60", +"BP" : "(nil)" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x6002047", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", +"token" : "0x600127d", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1e6000", +"timestamp" : "0xd74c9315", +"il_offset" : "0x00047" +} +, +{ +"is_managed" : "true", +"guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", +"token" : "0x600149c", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1e6000", +"timestamp" : "0xd74c9315", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x5620028704c9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a56319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a57655", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a606c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620028c55b5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba01f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba231e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfb9b540", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002b0befd", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a6a38c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a6c86d", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a5d54d", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620029f5223", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x59e28b093", +"offset_rich_hash" : "0x59e28b169", +"crashed" : false, +"native_thread_id" : "0x7fc0daff5640", +"thread_info_addr" : "0x7fc0cc000b60", +"thread_name" : "mono", +"ctx" : { +"IP" : "0x7fc0dfb9f4e2", +"SP" : "0x7fc0daff4460", +"BP" : "(nil)" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "9C6E2CB7-DDD8-473F-A420-642DDCF7CE48", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xe193f384", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9C6E2CB7-DDD8-473F-A420-642DDCF7CE48", +"token" : "0x600268d", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xe193f384", +"il_offset" : "0x0000c" +} +, +{ +"is_managed" : "true", +"guid" : "9C6E2CB7-DDD8-473F-A420-642DDCF7CE48", +"token" : "0x6002680", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xe193f384", +"il_offset" : "0x0002e" +} +, +{ +"is_managed" : "true", +"guid" : "9C6E2CB7-DDD8-473F-A420-642DDCF7CE48", +"token" : "0x6002683", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xe193f384", +"il_offset" : "0x0000d" +} +, +{ +"is_managed" : "true", +"guid" : "9C6E2CB7-DDD8-473F-A420-642DDCF7CE48", +"token" : "0x60025b8", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xe193f384", +"il_offset" : "0x0004d" +} +, +{ +"is_managed" : "true", +"guid" : "9C6E2CB7-DDD8-473F-A420-642DDCF7CE48", +"token" : "0x60025b9", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xe193f384", +"il_offset" : "0x0000a" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x600005d", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x0000e" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x5620028704c9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a56319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a57655", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a606c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620028c55b5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba01f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfb9f4e2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002aaeb6d", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002aaec61", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a465c4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9C6E2CB7-DDD8-473F-A420-642DDCF7CE48", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xe193f384", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7fc0dabf3640", +"thread_info_addr" : "0x7fc0c09747b0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7fc0dfba231e", +"SP" : "0x7fc0dabf2be0", +"BP" : "(nil)" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x5620028704c9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a56319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a57655", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a606c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620028c55b5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba01f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba231e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfb9e643", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002ab17bd", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a5ffdc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfb95450", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0df733d53", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x37f48eaf4", +"offset_rich_hash" : "0x37f48eb3b", +"crashed" : false, +"native_thread_id" : "0x7fc0da4e8640", +"thread_info_addr" : "0x7fc0bc000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7fc0dfba231e", +"SP" : "0x7fc0da4e7580", +"BP" : "(nil)" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x6001f43", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x00019" +} +, +{ +"is_managed" : "true", +"guid" : "F9C97B26-2149-4D4F-A382-A0BDDF871DA8", +"token" : "0x6000176", +"native_offset" : "0x0", +"filename" : "MonoDevelop.MSBuildBuilder.exe", +"sizeofimage" : "0x14000", +"timestamp" : "0xde5f999a", +"il_offset" : "0x00004" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x5620028704c9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a56319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a57655", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a606c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620028c55b5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba01f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba231e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfb9b99e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002b0be9b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002b16948", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a5d7d0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620029f459b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7fc0a2b11640", +"thread_info_addr" : "0x7fc0c408a2e0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7fc0dfba231e", +"SP" : "0x7fc0a2b10be0", +"BP" : "(nil)" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x5620028704c9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a56319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a57655", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a606c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620028c55b5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba01f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba231e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfb9e643", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002ab17bd", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a5ffdc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfb95450", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0df733d53", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7fc0da0e6640", +"thread_info_addr" : "0x7fc0cc0356e0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7fc0dfba231e", +"SP" : "0x7fc0da0e5be0", +"BP" : "(nil)" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x5620028704c9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a56319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a57655", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a606c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620028c55b5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba01f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba231e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfb9e643", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002ab17bd", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a5ffdc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfb95450", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0df733d53", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x543be115d", +"offset_rich_hash" : "0x543be1342", +"crashed" : false, +"native_thread_id" : "0x7fc0d95fe640", +"thread_info_addr" : "0x7fc0b0000b60", +"thread_name" : "RequestBuilder ", +"ctx" : { +"IP" : "0x7fc0dfba231e", +"SP" : "0x7fc0d95fd1a0", +"BP" : "(nil)" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x6001ef1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x6001e40", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x000d9" +} +, +{ +"is_managed" : "true", +"guid" : "9C6E2CB7-DDD8-473F-A420-642DDCF7CE48", +"token" : "0x6003b86", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xe193f384", +"il_offset" : "0x00067" +} +, +{ +"is_managed" : "true", +"guid" : "9C6E2CB7-DDD8-473F-A420-642DDCF7CE48", +"token" : "0x600427a", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xe193f384", +"il_offset" : "0x0004d" +} +, +{ +"is_managed" : "true", +"guid" : "F5C26A75-6012-4A5F-9B72-55EB2A34A9A9", +"token" : "0x6002267", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1e6000", +"timestamp" : "0xd74c9315", +"il_offset" : "0x0002e" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x5620028704c9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a56319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a57655", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a606c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620028c55b5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba01f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba231e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfb9b540", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002b0befd", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a6aaec", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a6c0ff", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002aa59cd", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620029f30d6", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "533173D2-4DAE-4608-99D2-B10975534BB0", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0x99dbfea7", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7fc0a1f0b640", +"thread_info_addr" : "0x7fc0c807e660", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7fc0dfba231e", +"SP" : "0x7fc0a1f0abe0", +"BP" : "(nil)" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x5620028704c9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a56319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a57655", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a606c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620028c55b5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba01f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba231e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfb9e643", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002ab17bd", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a5ffdc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfb95450", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0df733d53", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7fc0dbca2640", +"thread_info_addr" : "0x7fc0d4000b60", +"thread_name" : "Finalizer", +"ctx" : { +"IP" : "0x7fc0dfba231e", +"SP" : "0x7fc0dbca1c50", +"BP" : "(nil)" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x5620028704c9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a56319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a57655", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a606c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5620028c55b5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba01f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfba231e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfb9e4a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002aa1868", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x562002a5ffdc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0dfb95450", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7fc0df733d53", +"native_offset" : "0x00000" +} + +] +} +] +} \ No newline at end of file diff --git a/obj/x86/Release/youtube-downloader.csproj.CoreCompileInputs.cache b/obj/x86/Release/youtube-downloader.csproj.CoreCompileInputs.cache index efbe948..1c65f72 100644 --- a/obj/x86/Release/youtube-downloader.csproj.CoreCompileInputs.cache +++ b/obj/x86/Release/youtube-downloader.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -44da903d439971aefded0620c9e1c22e167916c2 +f8ed00aa95ccbdf3db94f6dfd910ae2b01d175fa diff --git a/obj/x86/Release/youtube-downloader.csproj.FileListAbsolute.txt b/obj/x86/Release/youtube-downloader.csproj.FileListAbsolute.txt index b976fcf..e63209a 100644 --- a/obj/x86/Release/youtube-downloader.csproj.FileListAbsolute.txt +++ b/obj/x86/Release/youtube-downloader.csproj.FileListAbsolute.txt @@ -415,3 +415,12 @@ /home/ddlovato/tytd/site/obj/x86/Release/youtube-downloader.csproj.CopyComplete /home/ddlovato/tytd/site/obj/x86/Release/youtube-downloader.exe /home/ddlovato/tytd/site/bin/Release/TYTD.Api.dll +/home/ddlovato/tytd/site/bin/Release/ExposedObject.dll +/home/ddlovato/tytd/site/bin/Release/Flurl.dll +/home/ddlovato/tytd/site/bin/Release/Jurassic.dll +/home/ddlovato/tytd/site/bin/Release/Stef.Validation.dll +/home/ddlovato/tytd/site/bin/Release/YoutubeExplode.Extensions.dll +/home/ddlovato/tytd/site/bin/Release/ExposedObject.pdb +/home/ddlovato/tytd/site/bin/Release/Jurassic.xml +/home/ddlovato/tytd/site/bin/Release/Flurl.pdb +/home/ddlovato/tytd/site/bin/Release/Flurl.xml diff --git a/obj/x86/Release/youtube-downloader.csprojAssemblyReference.cache b/obj/x86/Release/youtube-downloader.csprojAssemblyReference.cache index 2e55791..4cec2c0 100644 Binary files a/obj/x86/Release/youtube-downloader.csprojAssemblyReference.cache and b/obj/x86/Release/youtube-downloader.csprojAssemblyReference.cache differ diff --git a/obj/x86/Release/youtube-downloader.exe b/obj/x86/Release/youtube-downloader.exe index 9548b9e..c3fa807 100644 Binary files a/obj/x86/Release/youtube-downloader.exe and b/obj/x86/Release/youtube-downloader.exe differ diff --git a/packages.config b/packages.config index 92b60dc..11ec5e4 100644 --- a/packages.config +++ b/packages.config @@ -5,17 +5,22 @@ + + + + + @@ -28,4 +33,5 @@ + \ No newline at end of file diff --git a/packages/ExposedObject.2.1.0/.signature.p7s b/packages/ExposedObject.2.1.0/.signature.p7s new file mode 100755 index 0000000..dee2f34 Binary files /dev/null and b/packages/ExposedObject.2.1.0/.signature.p7s differ diff --git a/packages/ExposedObject.2.1.0/ExposedObject.2.1.0.nupkg b/packages/ExposedObject.2.1.0/ExposedObject.2.1.0.nupkg new file mode 100755 index 0000000..ffda591 Binary files /dev/null and b/packages/ExposedObject.2.1.0/ExposedObject.2.1.0.nupkg differ diff --git a/packages/ExposedObject.2.1.0/lib/net461/ExposedObject.dll b/packages/ExposedObject.2.1.0/lib/net461/ExposedObject.dll new file mode 100755 index 0000000..afd4122 Binary files /dev/null and b/packages/ExposedObject.2.1.0/lib/net461/ExposedObject.dll differ diff --git a/packages/ExposedObject.2.1.0/lib/net461/ExposedObject.pdb b/packages/ExposedObject.2.1.0/lib/net461/ExposedObject.pdb new file mode 100755 index 0000000..e8cf7d2 Binary files /dev/null and b/packages/ExposedObject.2.1.0/lib/net461/ExposedObject.pdb differ diff --git a/packages/ExposedObject.2.1.0/lib/netcoreapp3.1/ExposedObject.dll b/packages/ExposedObject.2.1.0/lib/netcoreapp3.1/ExposedObject.dll new file mode 100755 index 0000000..58afcbb Binary files /dev/null and b/packages/ExposedObject.2.1.0/lib/netcoreapp3.1/ExposedObject.dll differ diff --git a/packages/ExposedObject.2.1.0/lib/netcoreapp3.1/ExposedObject.pdb b/packages/ExposedObject.2.1.0/lib/netcoreapp3.1/ExposedObject.pdb new file mode 100755 index 0000000..f9e9b31 Binary files /dev/null and b/packages/ExposedObject.2.1.0/lib/netcoreapp3.1/ExposedObject.pdb differ diff --git a/packages/ExposedObject.2.1.0/lib/netstandard2.0/ExposedObject.dll b/packages/ExposedObject.2.1.0/lib/netstandard2.0/ExposedObject.dll new file mode 100755 index 0000000..ca51280 Binary files /dev/null and b/packages/ExposedObject.2.1.0/lib/netstandard2.0/ExposedObject.dll differ diff --git a/packages/ExposedObject.2.1.0/lib/netstandard2.0/ExposedObject.pdb b/packages/ExposedObject.2.1.0/lib/netstandard2.0/ExposedObject.pdb new file mode 100755 index 0000000..977808a Binary files /dev/null and b/packages/ExposedObject.2.1.0/lib/netstandard2.0/ExposedObject.pdb differ diff --git a/packages/Flurl.3.0.2/.signature.p7s b/packages/Flurl.3.0.2/.signature.p7s new file mode 100755 index 0000000..72cdad1 Binary files /dev/null and b/packages/Flurl.3.0.2/.signature.p7s differ diff --git a/packages/Flurl.3.0.2/Flurl.3.0.2.nupkg b/packages/Flurl.3.0.2/Flurl.3.0.2.nupkg new file mode 100755 index 0000000..1432820 Binary files /dev/null and b/packages/Flurl.3.0.2/Flurl.3.0.2.nupkg differ diff --git a/packages/Flurl.3.0.2/icon.png b/packages/Flurl.3.0.2/icon.png new file mode 100755 index 0000000..61460f6 Binary files /dev/null and b/packages/Flurl.3.0.2/icon.png differ diff --git a/packages/Flurl.3.0.2/lib/net461/Flurl.dll b/packages/Flurl.3.0.2/lib/net461/Flurl.dll new file mode 100755 index 0000000..42382c5 Binary files /dev/null and b/packages/Flurl.3.0.2/lib/net461/Flurl.dll differ diff --git a/packages/Flurl.3.0.2/lib/net461/Flurl.pdb b/packages/Flurl.3.0.2/lib/net461/Flurl.pdb new file mode 100755 index 0000000..5d89fb3 Binary files /dev/null and b/packages/Flurl.3.0.2/lib/net461/Flurl.pdb differ diff --git a/packages/Flurl.3.0.2/lib/net461/Flurl.xml b/packages/Flurl.3.0.2/lib/net461/Flurl.xml new file mode 100755 index 0000000..646f70f --- /dev/null +++ b/packages/Flurl.3.0.2/lib/net461/Flurl.xml @@ -0,0 +1,883 @@ + + + + Flurl + + + + + Fluent URL-building extension methods on String and Uri. + + + + + Creates a new Url object from the string and appends a segment to the URL path, ensuring there is one and only one '/' character as a separator. + + This URL. + The segment to append + If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters). + A new Flurl.Url object. + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator. + + This URL. + The segments to append + A new Flurl.Url object. + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator. + + This URL. + The segments to append + A new Flurl.Url object. + + + + Removes the last path segment from the URL. + + This URL. + A new Flurl.Url object. + + + + Removes the entire path component of the URL. + + This URL. + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists. + + This URL. + Name of query parameter + Value of query parameter + Indicates how to handle null values. Defaults to Remove (any existing) + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists. + + This URL. + Name of query parameter + Value of query parameter + Set to true to indicate the value is already URL-encoded. Defaults to false. + Indicates how to handle null values. Defaults to Remove (any existing). + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter without a value to the query, removing any existing value. + + This URL. + Name of query parameter + A new Flurl.Url object. + + + + Creates a new Url object from the string, parses values object into name/value pairs, and adds them to the query, overwriting any that already exist. + + This URL. + Typically an anonymous object, ie: new { x = 1, y = 2 } + Indicates how to handle null values. Defaults to Remove (any existing) + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds multiple parameters without values to the query. + + This URL. + Names of query parameters. + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds multiple parameters without values to the query. + + This URL. + Names of query parameters + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes a name/value pair from the query by name. + + This URL. + Query string parameter name to remove + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes multiple name/value pairs from the query by name. + + This URL. + Query string parameter names to remove + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes multiple name/value pairs from the query by name. + + This URL. + Query string parameter names to remove + A new Flurl.Url object. + + + + Removes the entire query component of the URL. + + This URL. + A new Flurl.Url object. + + + + Set the URL fragment fluently. + + This URL. + The part of the URL after # + A new Flurl.Url object. + + + + Removes the URL fragment including the #. + + This URL. + A new Flurl.Url object. + + + + Trims the URL to its root, including the scheme, any user info, host, and port (if specified). + + This URL. + A new Flurl.Url object. + + + + Creates a new Url object from the string and appends a segment to the URL path, ensuring there is one and only one '/' character as a separator. + + This System.Uri. + The segment to append + If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters). + A new Flurl.Url object. + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator. + + This System.Uri. + The segments to append + A new Flurl.Url object. + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator. + + This System.Uri. + The segments to append + A new Flurl.Url object. + + + + Removes the last path segment from the URL. + + This System.Uri. + A new Flurl.Url object. + + + + Removes the entire path component of the URL. + + This System.Uri. + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists. + + This System.Uri. + Name of query parameter + Value of query parameter + Indicates how to handle null values. Defaults to Remove (any existing) + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists. + + This System.Uri. + Name of query parameter + Value of query parameter + Set to true to indicate the value is already URL-encoded. Defaults to false. + Indicates how to handle null values. Defaults to Remove (any existing). + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter without a value to the query, removing any existing value. + + This System.Uri. + Name of query parameter + A new Flurl.Url object. + + + + Creates a new Url object from the string, parses values object into name/value pairs, and adds them to the query, overwriting any that already exist. + + This System.Uri. + Typically an anonymous object, ie: new { x = 1, y = 2 } + Indicates how to handle null values. Defaults to Remove (any existing) + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds multiple parameters without values to the query. + + This System.Uri. + Names of query parameters. + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds multiple parameters without values to the query. + + This System.Uri. + Names of query parameters + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes a name/value pair from the query by name. + + This System.Uri. + Query string parameter name to remove + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes multiple name/value pairs from the query by name. + + This System.Uri. + Query string parameter names to remove + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes multiple name/value pairs from the query by name. + + This System.Uri. + Query string parameter names to remove + A new Flurl.Url object. + + + + Removes the entire query component of the URL. + + This System.Uri. + A new Flurl.Url object. + + + + Set the URL fragment fluently. + + This System.Uri. + The part of the URL after # + A new Flurl.Url object. + + + + Removes the URL fragment including the #. + + This System.Uri. + A new Flurl.Url object. + + + + Trims the URL to its root, including the scheme, any user info, host, and port (if specified). + + This System.Uri. + A new Flurl.Url object. + + + + Describes how to handle null values in query parameters. + + + + + Set as name without value in query string. + + + + + Don't add to query string, remove any existing value. + + + + + Don't add to query string, but leave any existing value unchanged. + + + + + Represents a URL query as a collection of name/value pairs. Insertion order is preserved. + + + + + Returns a new instance of QueryParamCollection + + Optional query string to parse. + + + + Returns serialized, encoded query string. Insertion order is preserved. + + + + + + Returns serialized, encoded query string. Insertion order is preserved. + + + + + + Appends a query parameter. If value is a collection type (array, IEnumerable, etc.), multiple parameters are added, i.e. x=1&x=2. + To overwrite existing parameters of the same name, use AddOrReplace instead. + + Name of the parameter. + Value of the parameter. If it's a collection, multiple parameters of the same name are added. + If true, assume value(s) already URL-encoded. + Describes how to handle null values. + + + + Replaces existing query parameter(s) or appends to the end. If value is a collection type (array, IEnumerable, etc.), + multiple parameters are added, i.e. x=1&x=2. If any of the same name already exist, they are overwritten one by one + (preserving order) and any remaining are appended to the end. If fewer values are specified than already exist, + remaining existing values are removed. + + Name of the parameter. + Value of the parameter. If it's a collection, multiple parameters of the same name are added/replaced. + If true, assume value(s) already URL-encoded. + Describes how to handle null values. + + + + Removes all query parameters of the given name. + + + + + Clears all query parameters from this collection. + + + + > + + + > + + + > + + + > + + + > + + + > + + + > + + + > + + + + Represents a query parameter value with the ability to track whether it was already encoded when created. + + + + + A mutable object for fluently building and parsing URLs. + + + + + The scheme of the URL, i.e. "http". Does not include ":" delimiter. Empty string if the URL is relative. + + + + + i.e. "user:pass" in "https://user:pass@www.site.com". Empty string if not present. + + + + + i.e. "www.site.com" in "https://www.site.com:8080/path". Does not include user info or port. + + + + + Port number of the URL. Null if not explicitly specified. + + + + + i.e. "www.site.com:8080" in "https://www.site.com:8080/path". Includes both user info and port, if included. + + + + + i.e. "https://www.site.com:8080" in "https://www.site.com:8080/path" (everything before the path). + + + + + i.e. "/path" in "https://www.site.com/path". Empty string if not present. Leading and trailing "/" retained exactly as specified by user. + + + + + The "/"-delimited segments of the path, not including leading or trailing "/" characters. + + + + + i.e. "x=1&y=2" in "https://www.site.com/path?x=1&y=2". Does not include "?". + + + + + Query parsed to name/value pairs. + + + + + i.e. "frag" in "https://www.site.com/path?x=y#frag". Does not include "#". + + + + + True if URL does not start with a non-empty scheme. i.e. true for "https://www.site.com", false for "//www.site.com". + + + + + True if Url is absolute and scheme is https or wss. + + + + + Constructs a Url object from a string. + + The URL to use as a starting point. + + + + Constructs a Url object from a System.Uri. + + The System.Uri (required) + is . + + + + Parses a URL string into a Flurl.Url object. + + + + + Parses a URL query to a QueryParamCollection. + + The URL query to parse. + + + + Splits the given path into segments, encoding illegal characters, "?", and "#". + + The path to split. + + + + + Appends a segment to the URL path, ensuring there is one and only one '/' character as a separator. + + The segment to append + If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters). + the Url object with the segment appended + is . + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a seperator. + + The segments to append + the Url object with the segments appended + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a seperator. + + The segments to append + the Url object with the segments appended + + + + Removes the last path segment from the URL. + + The Url object. + + + + Removes the entire path component of the URL, including the leading slash. + + The Url object. + + + + Adds a parameter to the query, overwriting the value if name exists. + + Name of query parameter + Value of query parameter + Indicates how to handle null values. Defaults to Remove (any existing) + The Url object with the query parameter added + + + + Adds a parameter to the query, overwriting the value if name exists. + + Name of query parameter + Value of query parameter + Set to true to indicate the value is already URL-encoded + Indicates how to handle null values. Defaults to Remove (any existing) + The Url object with the query parameter added + is . + + + + Adds a parameter without a value to the query, removing any existing value. + + Name of query parameter + The Url object with the query parameter added + + + + Parses values (usually an anonymous object or dictionary) into name/value pairs and adds them to the query, overwriting any that already exist. + + Typically an anonymous object, ie: new { x = 1, y = 2 } + Indicates how to handle null values. Defaults to Remove (any existing) + The Url object with the query parameters added + + + + Adds multiple parameters without values to the query. + + Names of query parameters. + The Url object with the query parameter added + + + + Adds multiple parameters without values to the query. + + Names of query parameters + The Url object with the query parameter added. + + + + Removes a name/value pair from the query by name. + + Query string parameter name to remove + The Url object with the query parameter removed + + + + Removes multiple name/value pairs from the query by name. + + Query string parameter names to remove + The Url object. + + + + Removes multiple name/value pairs from the query by name. + + Query string parameter names to remove + The Url object with the query parameters removed + + + + Removes the entire query component of the URL. + + The Url object. + + + + Set the URL fragment fluently. + + The part of the URL after # + The Url object with the new fragment set + + + + Removes the URL fragment including the #. + + The Url object with the fragment removed + + + + Resets the URL to its root, including the scheme, any user info, host, and port (if specified). + + The Url object trimmed to its root. + + + + Resets the URL to its original state as set in the constructor. + + + + + Creates a copy of this Url. + + + + + Converts this Url object to its string representation. + + Indicates whether to encode spaces with the "+" character instead of "%20" + + + + + Converts this Url object to its string representation. + + + + + + Converts this Url object to System.Uri + + The System.Uri object + + + + Implicit conversion from Url to String. + + The Url object + The string + + + + Implicit conversion from String to Url. + + The String representation of the URL + The string + + + + Implicit conversion from System.Uri to Flurl.Url. + + The string + + + + True if obj is an instance of Url and its string representation is equal to this instance's string representation. + + The object to compare to this instance. + + + + + Returns the hashcode for this Url. + + + + + Basically a Path.Combine for URLs. Ensures exactly one '/' separates each segment, + and exactly on '&' separates each query parameter. + URL-encodes illegal characters but not reserved characters. + + URL parts to combine. + + + + Decodes a URL-encoded string. + + The URL-encoded string. + If true, any '+' character will be decoded to a space. + + + + + URL-encodes a string, including reserved characters such as '/' and '?'. + + The string to encode. + If true, spaces will be encoded as + signs. Otherwise, they'll be encoded as %20. + The encoded URL. + + + + URL-encodes characters in a string that are neither reserved nor unreserved. Avoids encoding reserved characters such as '/' and '?'. Avoids encoding '%' if it begins a %-hex-hex sequence (i.e. avoids double-encoding). + + The string to encode. + If true, spaces will be encoded as + signs. Otherwise, they'll be encoded as %20. + The encoded URL. + + + + Checks if a string is a well-formed absolute URL. + + The string to check + true if the string is a well-formed absolute URL + + + + CommonExtensions for objects. + + + + + Returns a key-value-pairs representation of the object. + For strings, URL query string format assumed and pairs are parsed from that. + For objects that already implement IEnumerable<KeyValuePair>, the object itself is simply returned. + For all other objects, all publicly readable properties are extracted and returned as pairs. + + The object to parse into key-value pairs + + is . + + + + Returns a string that represents the current object, using CultureInfo.InvariantCulture where possible. + Dates are represented in IS0 8601. + + + + + Splits at the first occurrence of the given separator. + + The string to split. + The separator to split on. + Array of at most 2 strings. (1 if separator is not found.) + + + + Merges the key/value pairs from d2 into d1, without overwriting those already set in d1. + + + + + Strips any single quotes or double quotes from the beginning and end of a string. + + + + + True if the given string is a valid IPv4 address. + + + + + Defines common methods for INameValueList and IReadOnlyNameValueList. + + + + + Returns the first Value of the given Name if one exists, otherwise null or default value. + + + + + Gets the first Value of the given Name, if one exists. + + true if any item of the given name is found, otherwise false. + + + + Gets all Values of the given Name. + + + + + True if any items with the given Name exist. + + + + + True if any item with the given Name and Value exists. + + + + + Defines an ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical. + + + + + Adds a new Name/Value pair. + + + + + Replaces the first occurrence of the given Name with the given Value and removes any others, + or adds a new Name/Value pair if none exist. + + + + + Removes all items of the given Name. + + true if any item of the given name is found, otherwise false. + + + + Defines a read-only ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical. + + + + + An ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical. + Useful for things where a dictionary would work great if not for those pesky edge cases (headers, cookies, etc). + + + + + Instantiates a new empty NameValueList. + + + + + Instantiates a new NameValueList with the Name/Value pairs provided. + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/Flurl.3.0.2/lib/net472/Flurl.dll b/packages/Flurl.3.0.2/lib/net472/Flurl.dll new file mode 100755 index 0000000..8a4777f Binary files /dev/null and b/packages/Flurl.3.0.2/lib/net472/Flurl.dll differ diff --git a/packages/Flurl.3.0.2/lib/net472/Flurl.pdb b/packages/Flurl.3.0.2/lib/net472/Flurl.pdb new file mode 100755 index 0000000..74f65a2 Binary files /dev/null and b/packages/Flurl.3.0.2/lib/net472/Flurl.pdb differ diff --git a/packages/Flurl.3.0.2/lib/net472/Flurl.xml b/packages/Flurl.3.0.2/lib/net472/Flurl.xml new file mode 100755 index 0000000..646f70f --- /dev/null +++ b/packages/Flurl.3.0.2/lib/net472/Flurl.xml @@ -0,0 +1,883 @@ + + + + Flurl + + + + + Fluent URL-building extension methods on String and Uri. + + + + + Creates a new Url object from the string and appends a segment to the URL path, ensuring there is one and only one '/' character as a separator. + + This URL. + The segment to append + If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters). + A new Flurl.Url object. + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator. + + This URL. + The segments to append + A new Flurl.Url object. + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator. + + This URL. + The segments to append + A new Flurl.Url object. + + + + Removes the last path segment from the URL. + + This URL. + A new Flurl.Url object. + + + + Removes the entire path component of the URL. + + This URL. + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists. + + This URL. + Name of query parameter + Value of query parameter + Indicates how to handle null values. Defaults to Remove (any existing) + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists. + + This URL. + Name of query parameter + Value of query parameter + Set to true to indicate the value is already URL-encoded. Defaults to false. + Indicates how to handle null values. Defaults to Remove (any existing). + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter without a value to the query, removing any existing value. + + This URL. + Name of query parameter + A new Flurl.Url object. + + + + Creates a new Url object from the string, parses values object into name/value pairs, and adds them to the query, overwriting any that already exist. + + This URL. + Typically an anonymous object, ie: new { x = 1, y = 2 } + Indicates how to handle null values. Defaults to Remove (any existing) + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds multiple parameters without values to the query. + + This URL. + Names of query parameters. + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds multiple parameters without values to the query. + + This URL. + Names of query parameters + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes a name/value pair from the query by name. + + This URL. + Query string parameter name to remove + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes multiple name/value pairs from the query by name. + + This URL. + Query string parameter names to remove + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes multiple name/value pairs from the query by name. + + This URL. + Query string parameter names to remove + A new Flurl.Url object. + + + + Removes the entire query component of the URL. + + This URL. + A new Flurl.Url object. + + + + Set the URL fragment fluently. + + This URL. + The part of the URL after # + A new Flurl.Url object. + + + + Removes the URL fragment including the #. + + This URL. + A new Flurl.Url object. + + + + Trims the URL to its root, including the scheme, any user info, host, and port (if specified). + + This URL. + A new Flurl.Url object. + + + + Creates a new Url object from the string and appends a segment to the URL path, ensuring there is one and only one '/' character as a separator. + + This System.Uri. + The segment to append + If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters). + A new Flurl.Url object. + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator. + + This System.Uri. + The segments to append + A new Flurl.Url object. + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator. + + This System.Uri. + The segments to append + A new Flurl.Url object. + + + + Removes the last path segment from the URL. + + This System.Uri. + A new Flurl.Url object. + + + + Removes the entire path component of the URL. + + This System.Uri. + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists. + + This System.Uri. + Name of query parameter + Value of query parameter + Indicates how to handle null values. Defaults to Remove (any existing) + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists. + + This System.Uri. + Name of query parameter + Value of query parameter + Set to true to indicate the value is already URL-encoded. Defaults to false. + Indicates how to handle null values. Defaults to Remove (any existing). + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter without a value to the query, removing any existing value. + + This System.Uri. + Name of query parameter + A new Flurl.Url object. + + + + Creates a new Url object from the string, parses values object into name/value pairs, and adds them to the query, overwriting any that already exist. + + This System.Uri. + Typically an anonymous object, ie: new { x = 1, y = 2 } + Indicates how to handle null values. Defaults to Remove (any existing) + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds multiple parameters without values to the query. + + This System.Uri. + Names of query parameters. + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds multiple parameters without values to the query. + + This System.Uri. + Names of query parameters + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes a name/value pair from the query by name. + + This System.Uri. + Query string parameter name to remove + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes multiple name/value pairs from the query by name. + + This System.Uri. + Query string parameter names to remove + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes multiple name/value pairs from the query by name. + + This System.Uri. + Query string parameter names to remove + A new Flurl.Url object. + + + + Removes the entire query component of the URL. + + This System.Uri. + A new Flurl.Url object. + + + + Set the URL fragment fluently. + + This System.Uri. + The part of the URL after # + A new Flurl.Url object. + + + + Removes the URL fragment including the #. + + This System.Uri. + A new Flurl.Url object. + + + + Trims the URL to its root, including the scheme, any user info, host, and port (if specified). + + This System.Uri. + A new Flurl.Url object. + + + + Describes how to handle null values in query parameters. + + + + + Set as name without value in query string. + + + + + Don't add to query string, remove any existing value. + + + + + Don't add to query string, but leave any existing value unchanged. + + + + + Represents a URL query as a collection of name/value pairs. Insertion order is preserved. + + + + + Returns a new instance of QueryParamCollection + + Optional query string to parse. + + + + Returns serialized, encoded query string. Insertion order is preserved. + + + + + + Returns serialized, encoded query string. Insertion order is preserved. + + + + + + Appends a query parameter. If value is a collection type (array, IEnumerable, etc.), multiple parameters are added, i.e. x=1&x=2. + To overwrite existing parameters of the same name, use AddOrReplace instead. + + Name of the parameter. + Value of the parameter. If it's a collection, multiple parameters of the same name are added. + If true, assume value(s) already URL-encoded. + Describes how to handle null values. + + + + Replaces existing query parameter(s) or appends to the end. If value is a collection type (array, IEnumerable, etc.), + multiple parameters are added, i.e. x=1&x=2. If any of the same name already exist, they are overwritten one by one + (preserving order) and any remaining are appended to the end. If fewer values are specified than already exist, + remaining existing values are removed. + + Name of the parameter. + Value of the parameter. If it's a collection, multiple parameters of the same name are added/replaced. + If true, assume value(s) already URL-encoded. + Describes how to handle null values. + + + + Removes all query parameters of the given name. + + + + + Clears all query parameters from this collection. + + + + > + + + > + + + > + + + > + + + > + + + > + + + > + + + > + + + + Represents a query parameter value with the ability to track whether it was already encoded when created. + + + + + A mutable object for fluently building and parsing URLs. + + + + + The scheme of the URL, i.e. "http". Does not include ":" delimiter. Empty string if the URL is relative. + + + + + i.e. "user:pass" in "https://user:pass@www.site.com". Empty string if not present. + + + + + i.e. "www.site.com" in "https://www.site.com:8080/path". Does not include user info or port. + + + + + Port number of the URL. Null if not explicitly specified. + + + + + i.e. "www.site.com:8080" in "https://www.site.com:8080/path". Includes both user info and port, if included. + + + + + i.e. "https://www.site.com:8080" in "https://www.site.com:8080/path" (everything before the path). + + + + + i.e. "/path" in "https://www.site.com/path". Empty string if not present. Leading and trailing "/" retained exactly as specified by user. + + + + + The "/"-delimited segments of the path, not including leading or trailing "/" characters. + + + + + i.e. "x=1&y=2" in "https://www.site.com/path?x=1&y=2". Does not include "?". + + + + + Query parsed to name/value pairs. + + + + + i.e. "frag" in "https://www.site.com/path?x=y#frag". Does not include "#". + + + + + True if URL does not start with a non-empty scheme. i.e. true for "https://www.site.com", false for "//www.site.com". + + + + + True if Url is absolute and scheme is https or wss. + + + + + Constructs a Url object from a string. + + The URL to use as a starting point. + + + + Constructs a Url object from a System.Uri. + + The System.Uri (required) + is . + + + + Parses a URL string into a Flurl.Url object. + + + + + Parses a URL query to a QueryParamCollection. + + The URL query to parse. + + + + Splits the given path into segments, encoding illegal characters, "?", and "#". + + The path to split. + + + + + Appends a segment to the URL path, ensuring there is one and only one '/' character as a separator. + + The segment to append + If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters). + the Url object with the segment appended + is . + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a seperator. + + The segments to append + the Url object with the segments appended + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a seperator. + + The segments to append + the Url object with the segments appended + + + + Removes the last path segment from the URL. + + The Url object. + + + + Removes the entire path component of the URL, including the leading slash. + + The Url object. + + + + Adds a parameter to the query, overwriting the value if name exists. + + Name of query parameter + Value of query parameter + Indicates how to handle null values. Defaults to Remove (any existing) + The Url object with the query parameter added + + + + Adds a parameter to the query, overwriting the value if name exists. + + Name of query parameter + Value of query parameter + Set to true to indicate the value is already URL-encoded + Indicates how to handle null values. Defaults to Remove (any existing) + The Url object with the query parameter added + is . + + + + Adds a parameter without a value to the query, removing any existing value. + + Name of query parameter + The Url object with the query parameter added + + + + Parses values (usually an anonymous object or dictionary) into name/value pairs and adds them to the query, overwriting any that already exist. + + Typically an anonymous object, ie: new { x = 1, y = 2 } + Indicates how to handle null values. Defaults to Remove (any existing) + The Url object with the query parameters added + + + + Adds multiple parameters without values to the query. + + Names of query parameters. + The Url object with the query parameter added + + + + Adds multiple parameters without values to the query. + + Names of query parameters + The Url object with the query parameter added. + + + + Removes a name/value pair from the query by name. + + Query string parameter name to remove + The Url object with the query parameter removed + + + + Removes multiple name/value pairs from the query by name. + + Query string parameter names to remove + The Url object. + + + + Removes multiple name/value pairs from the query by name. + + Query string parameter names to remove + The Url object with the query parameters removed + + + + Removes the entire query component of the URL. + + The Url object. + + + + Set the URL fragment fluently. + + The part of the URL after # + The Url object with the new fragment set + + + + Removes the URL fragment including the #. + + The Url object with the fragment removed + + + + Resets the URL to its root, including the scheme, any user info, host, and port (if specified). + + The Url object trimmed to its root. + + + + Resets the URL to its original state as set in the constructor. + + + + + Creates a copy of this Url. + + + + + Converts this Url object to its string representation. + + Indicates whether to encode spaces with the "+" character instead of "%20" + + + + + Converts this Url object to its string representation. + + + + + + Converts this Url object to System.Uri + + The System.Uri object + + + + Implicit conversion from Url to String. + + The Url object + The string + + + + Implicit conversion from String to Url. + + The String representation of the URL + The string + + + + Implicit conversion from System.Uri to Flurl.Url. + + The string + + + + True if obj is an instance of Url and its string representation is equal to this instance's string representation. + + The object to compare to this instance. + + + + + Returns the hashcode for this Url. + + + + + Basically a Path.Combine for URLs. Ensures exactly one '/' separates each segment, + and exactly on '&' separates each query parameter. + URL-encodes illegal characters but not reserved characters. + + URL parts to combine. + + + + Decodes a URL-encoded string. + + The URL-encoded string. + If true, any '+' character will be decoded to a space. + + + + + URL-encodes a string, including reserved characters such as '/' and '?'. + + The string to encode. + If true, spaces will be encoded as + signs. Otherwise, they'll be encoded as %20. + The encoded URL. + + + + URL-encodes characters in a string that are neither reserved nor unreserved. Avoids encoding reserved characters such as '/' and '?'. Avoids encoding '%' if it begins a %-hex-hex sequence (i.e. avoids double-encoding). + + The string to encode. + If true, spaces will be encoded as + signs. Otherwise, they'll be encoded as %20. + The encoded URL. + + + + Checks if a string is a well-formed absolute URL. + + The string to check + true if the string is a well-formed absolute URL + + + + CommonExtensions for objects. + + + + + Returns a key-value-pairs representation of the object. + For strings, URL query string format assumed and pairs are parsed from that. + For objects that already implement IEnumerable<KeyValuePair>, the object itself is simply returned. + For all other objects, all publicly readable properties are extracted and returned as pairs. + + The object to parse into key-value pairs + + is . + + + + Returns a string that represents the current object, using CultureInfo.InvariantCulture where possible. + Dates are represented in IS0 8601. + + + + + Splits at the first occurrence of the given separator. + + The string to split. + The separator to split on. + Array of at most 2 strings. (1 if separator is not found.) + + + + Merges the key/value pairs from d2 into d1, without overwriting those already set in d1. + + + + + Strips any single quotes or double quotes from the beginning and end of a string. + + + + + True if the given string is a valid IPv4 address. + + + + + Defines common methods for INameValueList and IReadOnlyNameValueList. + + + + + Returns the first Value of the given Name if one exists, otherwise null or default value. + + + + + Gets the first Value of the given Name, if one exists. + + true if any item of the given name is found, otherwise false. + + + + Gets all Values of the given Name. + + + + + True if any items with the given Name exist. + + + + + True if any item with the given Name and Value exists. + + + + + Defines an ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical. + + + + + Adds a new Name/Value pair. + + + + + Replaces the first occurrence of the given Name with the given Value and removes any others, + or adds a new Name/Value pair if none exist. + + + + + Removes all items of the given Name. + + true if any item of the given name is found, otherwise false. + + + + Defines a read-only ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical. + + + + + An ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical. + Useful for things where a dictionary would work great if not for those pesky edge cases (headers, cookies, etc). + + + + + Instantiates a new empty NameValueList. + + + + + Instantiates a new NameValueList with the Name/Value pairs provided. + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/Flurl.3.0.2/lib/netstandard2.0/Flurl.dll b/packages/Flurl.3.0.2/lib/netstandard2.0/Flurl.dll new file mode 100755 index 0000000..431deac Binary files /dev/null and b/packages/Flurl.3.0.2/lib/netstandard2.0/Flurl.dll differ diff --git a/packages/Flurl.3.0.2/lib/netstandard2.0/Flurl.pdb b/packages/Flurl.3.0.2/lib/netstandard2.0/Flurl.pdb new file mode 100755 index 0000000..11bd271 Binary files /dev/null and b/packages/Flurl.3.0.2/lib/netstandard2.0/Flurl.pdb differ diff --git a/packages/Flurl.3.0.2/lib/netstandard2.0/Flurl.xml b/packages/Flurl.3.0.2/lib/netstandard2.0/Flurl.xml new file mode 100755 index 0000000..646f70f --- /dev/null +++ b/packages/Flurl.3.0.2/lib/netstandard2.0/Flurl.xml @@ -0,0 +1,883 @@ + + + + Flurl + + + + + Fluent URL-building extension methods on String and Uri. + + + + + Creates a new Url object from the string and appends a segment to the URL path, ensuring there is one and only one '/' character as a separator. + + This URL. + The segment to append + If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters). + A new Flurl.Url object. + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator. + + This URL. + The segments to append + A new Flurl.Url object. + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator. + + This URL. + The segments to append + A new Flurl.Url object. + + + + Removes the last path segment from the URL. + + This URL. + A new Flurl.Url object. + + + + Removes the entire path component of the URL. + + This URL. + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists. + + This URL. + Name of query parameter + Value of query parameter + Indicates how to handle null values. Defaults to Remove (any existing) + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists. + + This URL. + Name of query parameter + Value of query parameter + Set to true to indicate the value is already URL-encoded. Defaults to false. + Indicates how to handle null values. Defaults to Remove (any existing). + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter without a value to the query, removing any existing value. + + This URL. + Name of query parameter + A new Flurl.Url object. + + + + Creates a new Url object from the string, parses values object into name/value pairs, and adds them to the query, overwriting any that already exist. + + This URL. + Typically an anonymous object, ie: new { x = 1, y = 2 } + Indicates how to handle null values. Defaults to Remove (any existing) + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds multiple parameters without values to the query. + + This URL. + Names of query parameters. + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds multiple parameters without values to the query. + + This URL. + Names of query parameters + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes a name/value pair from the query by name. + + This URL. + Query string parameter name to remove + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes multiple name/value pairs from the query by name. + + This URL. + Query string parameter names to remove + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes multiple name/value pairs from the query by name. + + This URL. + Query string parameter names to remove + A new Flurl.Url object. + + + + Removes the entire query component of the URL. + + This URL. + A new Flurl.Url object. + + + + Set the URL fragment fluently. + + This URL. + The part of the URL after # + A new Flurl.Url object. + + + + Removes the URL fragment including the #. + + This URL. + A new Flurl.Url object. + + + + Trims the URL to its root, including the scheme, any user info, host, and port (if specified). + + This URL. + A new Flurl.Url object. + + + + Creates a new Url object from the string and appends a segment to the URL path, ensuring there is one and only one '/' character as a separator. + + This System.Uri. + The segment to append + If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters). + A new Flurl.Url object. + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator. + + This System.Uri. + The segments to append + A new Flurl.Url object. + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a separator. + + This System.Uri. + The segments to append + A new Flurl.Url object. + + + + Removes the last path segment from the URL. + + This System.Uri. + A new Flurl.Url object. + + + + Removes the entire path component of the URL. + + This System.Uri. + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists. + + This System.Uri. + Name of query parameter + Value of query parameter + Indicates how to handle null values. Defaults to Remove (any existing) + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter to the query, overwriting the value if name exists. + + This System.Uri. + Name of query parameter + Value of query parameter + Set to true to indicate the value is already URL-encoded. Defaults to false. + Indicates how to handle null values. Defaults to Remove (any existing). + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds a parameter without a value to the query, removing any existing value. + + This System.Uri. + Name of query parameter + A new Flurl.Url object. + + + + Creates a new Url object from the string, parses values object into name/value pairs, and adds them to the query, overwriting any that already exist. + + This System.Uri. + Typically an anonymous object, ie: new { x = 1, y = 2 } + Indicates how to handle null values. Defaults to Remove (any existing) + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds multiple parameters without values to the query. + + This System.Uri. + Names of query parameters. + A new Flurl.Url object. + + + + Creates a new Url object from the string and adds multiple parameters without values to the query. + + This System.Uri. + Names of query parameters + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes a name/value pair from the query by name. + + This System.Uri. + Query string parameter name to remove + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes multiple name/value pairs from the query by name. + + This System.Uri. + Query string parameter names to remove + A new Flurl.Url object. + + + + Creates a new Url object from the string and removes multiple name/value pairs from the query by name. + + This System.Uri. + Query string parameter names to remove + A new Flurl.Url object. + + + + Removes the entire query component of the URL. + + This System.Uri. + A new Flurl.Url object. + + + + Set the URL fragment fluently. + + This System.Uri. + The part of the URL after # + A new Flurl.Url object. + + + + Removes the URL fragment including the #. + + This System.Uri. + A new Flurl.Url object. + + + + Trims the URL to its root, including the scheme, any user info, host, and port (if specified). + + This System.Uri. + A new Flurl.Url object. + + + + Describes how to handle null values in query parameters. + + + + + Set as name without value in query string. + + + + + Don't add to query string, remove any existing value. + + + + + Don't add to query string, but leave any existing value unchanged. + + + + + Represents a URL query as a collection of name/value pairs. Insertion order is preserved. + + + + + Returns a new instance of QueryParamCollection + + Optional query string to parse. + + + + Returns serialized, encoded query string. Insertion order is preserved. + + + + + + Returns serialized, encoded query string. Insertion order is preserved. + + + + + + Appends a query parameter. If value is a collection type (array, IEnumerable, etc.), multiple parameters are added, i.e. x=1&x=2. + To overwrite existing parameters of the same name, use AddOrReplace instead. + + Name of the parameter. + Value of the parameter. If it's a collection, multiple parameters of the same name are added. + If true, assume value(s) already URL-encoded. + Describes how to handle null values. + + + + Replaces existing query parameter(s) or appends to the end. If value is a collection type (array, IEnumerable, etc.), + multiple parameters are added, i.e. x=1&x=2. If any of the same name already exist, they are overwritten one by one + (preserving order) and any remaining are appended to the end. If fewer values are specified than already exist, + remaining existing values are removed. + + Name of the parameter. + Value of the parameter. If it's a collection, multiple parameters of the same name are added/replaced. + If true, assume value(s) already URL-encoded. + Describes how to handle null values. + + + + Removes all query parameters of the given name. + + + + + Clears all query parameters from this collection. + + + + > + + + > + + + > + + + > + + + > + + + > + + + > + + + > + + + + Represents a query parameter value with the ability to track whether it was already encoded when created. + + + + + A mutable object for fluently building and parsing URLs. + + + + + The scheme of the URL, i.e. "http". Does not include ":" delimiter. Empty string if the URL is relative. + + + + + i.e. "user:pass" in "https://user:pass@www.site.com". Empty string if not present. + + + + + i.e. "www.site.com" in "https://www.site.com:8080/path". Does not include user info or port. + + + + + Port number of the URL. Null if not explicitly specified. + + + + + i.e. "www.site.com:8080" in "https://www.site.com:8080/path". Includes both user info and port, if included. + + + + + i.e. "https://www.site.com:8080" in "https://www.site.com:8080/path" (everything before the path). + + + + + i.e. "/path" in "https://www.site.com/path". Empty string if not present. Leading and trailing "/" retained exactly as specified by user. + + + + + The "/"-delimited segments of the path, not including leading or trailing "/" characters. + + + + + i.e. "x=1&y=2" in "https://www.site.com/path?x=1&y=2". Does not include "?". + + + + + Query parsed to name/value pairs. + + + + + i.e. "frag" in "https://www.site.com/path?x=y#frag". Does not include "#". + + + + + True if URL does not start with a non-empty scheme. i.e. true for "https://www.site.com", false for "//www.site.com". + + + + + True if Url is absolute and scheme is https or wss. + + + + + Constructs a Url object from a string. + + The URL to use as a starting point. + + + + Constructs a Url object from a System.Uri. + + The System.Uri (required) + is . + + + + Parses a URL string into a Flurl.Url object. + + + + + Parses a URL query to a QueryParamCollection. + + The URL query to parse. + + + + Splits the given path into segments, encoding illegal characters, "?", and "#". + + The path to split. + + + + + Appends a segment to the URL path, ensuring there is one and only one '/' character as a separator. + + The segment to append + If true, URL-encodes reserved characters such as '/', '+', and '%'. Otherwise, only encodes strictly illegal characters (including '%' but only when not followed by 2 hex characters). + the Url object with the segment appended + is . + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a seperator. + + The segments to append + the Url object with the segments appended + + + + Appends multiple segments to the URL path, ensuring there is one and only one '/' character as a seperator. + + The segments to append + the Url object with the segments appended + + + + Removes the last path segment from the URL. + + The Url object. + + + + Removes the entire path component of the URL, including the leading slash. + + The Url object. + + + + Adds a parameter to the query, overwriting the value if name exists. + + Name of query parameter + Value of query parameter + Indicates how to handle null values. Defaults to Remove (any existing) + The Url object with the query parameter added + + + + Adds a parameter to the query, overwriting the value if name exists. + + Name of query parameter + Value of query parameter + Set to true to indicate the value is already URL-encoded + Indicates how to handle null values. Defaults to Remove (any existing) + The Url object with the query parameter added + is . + + + + Adds a parameter without a value to the query, removing any existing value. + + Name of query parameter + The Url object with the query parameter added + + + + Parses values (usually an anonymous object or dictionary) into name/value pairs and adds them to the query, overwriting any that already exist. + + Typically an anonymous object, ie: new { x = 1, y = 2 } + Indicates how to handle null values. Defaults to Remove (any existing) + The Url object with the query parameters added + + + + Adds multiple parameters without values to the query. + + Names of query parameters. + The Url object with the query parameter added + + + + Adds multiple parameters without values to the query. + + Names of query parameters + The Url object with the query parameter added. + + + + Removes a name/value pair from the query by name. + + Query string parameter name to remove + The Url object with the query parameter removed + + + + Removes multiple name/value pairs from the query by name. + + Query string parameter names to remove + The Url object. + + + + Removes multiple name/value pairs from the query by name. + + Query string parameter names to remove + The Url object with the query parameters removed + + + + Removes the entire query component of the URL. + + The Url object. + + + + Set the URL fragment fluently. + + The part of the URL after # + The Url object with the new fragment set + + + + Removes the URL fragment including the #. + + The Url object with the fragment removed + + + + Resets the URL to its root, including the scheme, any user info, host, and port (if specified). + + The Url object trimmed to its root. + + + + Resets the URL to its original state as set in the constructor. + + + + + Creates a copy of this Url. + + + + + Converts this Url object to its string representation. + + Indicates whether to encode spaces with the "+" character instead of "%20" + + + + + Converts this Url object to its string representation. + + + + + + Converts this Url object to System.Uri + + The System.Uri object + + + + Implicit conversion from Url to String. + + The Url object + The string + + + + Implicit conversion from String to Url. + + The String representation of the URL + The string + + + + Implicit conversion from System.Uri to Flurl.Url. + + The string + + + + True if obj is an instance of Url and its string representation is equal to this instance's string representation. + + The object to compare to this instance. + + + + + Returns the hashcode for this Url. + + + + + Basically a Path.Combine for URLs. Ensures exactly one '/' separates each segment, + and exactly on '&' separates each query parameter. + URL-encodes illegal characters but not reserved characters. + + URL parts to combine. + + + + Decodes a URL-encoded string. + + The URL-encoded string. + If true, any '+' character will be decoded to a space. + + + + + URL-encodes a string, including reserved characters such as '/' and '?'. + + The string to encode. + If true, spaces will be encoded as + signs. Otherwise, they'll be encoded as %20. + The encoded URL. + + + + URL-encodes characters in a string that are neither reserved nor unreserved. Avoids encoding reserved characters such as '/' and '?'. Avoids encoding '%' if it begins a %-hex-hex sequence (i.e. avoids double-encoding). + + The string to encode. + If true, spaces will be encoded as + signs. Otherwise, they'll be encoded as %20. + The encoded URL. + + + + Checks if a string is a well-formed absolute URL. + + The string to check + true if the string is a well-formed absolute URL + + + + CommonExtensions for objects. + + + + + Returns a key-value-pairs representation of the object. + For strings, URL query string format assumed and pairs are parsed from that. + For objects that already implement IEnumerable<KeyValuePair>, the object itself is simply returned. + For all other objects, all publicly readable properties are extracted and returned as pairs. + + The object to parse into key-value pairs + + is . + + + + Returns a string that represents the current object, using CultureInfo.InvariantCulture where possible. + Dates are represented in IS0 8601. + + + + + Splits at the first occurrence of the given separator. + + The string to split. + The separator to split on. + Array of at most 2 strings. (1 if separator is not found.) + + + + Merges the key/value pairs from d2 into d1, without overwriting those already set in d1. + + + + + Strips any single quotes or double quotes from the beginning and end of a string. + + + + + True if the given string is a valid IPv4 address. + + + + + Defines common methods for INameValueList and IReadOnlyNameValueList. + + + + + Returns the first Value of the given Name if one exists, otherwise null or default value. + + + + + Gets the first Value of the given Name, if one exists. + + true if any item of the given name is found, otherwise false. + + + + Gets all Values of the given Name. + + + + + True if any items with the given Name exist. + + + + + True if any item with the given Name and Value exists. + + + + + Defines an ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical. + + + + + Adds a new Name/Value pair. + + + + + Replaces the first occurrence of the given Name with the given Value and removes any others, + or adds a new Name/Value pair if none exist. + + + + + Removes all items of the given Name. + + true if any item of the given name is found, otherwise false. + + + + Defines a read-only ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical. + + + + + An ordered collection of Name/Value pairs where duplicate names are allowed but aren't typical. + Useful for things where a dictionary would work great if not for those pesky edge cases (headers, cookies, etc). + + + + + Instantiates a new empty NameValueList. + + + + + Instantiates a new NameValueList with the Name/Value pairs provided. + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/Jurassic.3.2.4/.signature.p7s b/packages/Jurassic.3.2.4/.signature.p7s new file mode 100755 index 0000000..59cd22c Binary files /dev/null and b/packages/Jurassic.3.2.4/.signature.p7s differ diff --git a/packages/Jurassic.3.2.4/Jurassic.3.2.4.nupkg b/packages/Jurassic.3.2.4/Jurassic.3.2.4.nupkg new file mode 100755 index 0000000..d2c0823 Binary files /dev/null and b/packages/Jurassic.3.2.4/Jurassic.3.2.4.nupkg differ diff --git a/packages/Jurassic.3.2.4/lib/netstandard2.0/Jurassic.dll b/packages/Jurassic.3.2.4/lib/netstandard2.0/Jurassic.dll new file mode 100755 index 0000000..e9163a6 Binary files /dev/null and b/packages/Jurassic.3.2.4/lib/netstandard2.0/Jurassic.dll differ diff --git a/packages/Jurassic.3.2.4/lib/netstandard2.0/Jurassic.xml b/packages/Jurassic.3.2.4/lib/netstandard2.0/Jurassic.xml new file mode 100755 index 0000000..fa4038b --- /dev/null +++ b/packages/Jurassic.3.2.4/lib/netstandard2.0/Jurassic.xml @@ -0,0 +1,18893 @@ + + + + Jurassic + + + + + Represents a generic delegate that all method calls pass through. For internal use only. + + The associated script engine. + The value of the this keyword. + The arguments that were passed to the function. + The result of calling the method. + + + + Selects a method from a list of candidates and performs type conversion from actual + argument type to formal argument type. + + + + + Gets the name of the target methods. + + + + + Gets the full name of the target methods, including the type name. + + + + + Gets the maximum number of arguments of any of the target methods. Used to set the + length property on the function. + + + + + Calls the bound method. + + The associated script engine. + The value of the this keyword. + The arguments to pass to the function. + The result of calling the method. + + + + Creates a delegate that does type conversion and calls the bound method. + + The number of arguments that will be passed to the delegate. + A delegate that does type conversion and calls the method represented by this + object. + This method caches the result so calling CreateDelegate a second time with + the same parameter count will be markedly quicker. + + + + Creates a delegate that does type conversion and calls the bound method. + + The number of arguments that will be passed to the delegate. + A delegate that does type conversion and calls the method represented by this + object. + No caching of the result occurs. + + + + Generates a method that does type conversion and calls the bound method. + + The ILGenerator used to output the body of the method. + The number of arguments that will be passed to the delegate. + A delegate that does type conversion and calls the method represented by this + object. + + + + Returns a textual representation of this object. + + A textual representation of this object. + + + + Represents a single method that a binder can call. + + + + + Creates a new BinderMethod instance. + + The method to encapsulate. + + + + Initializes this instance. + + + + + Gets a reference to the method. + + + + + Implicitly cast an instance of this class to a MethodBase. + + The BinderMethod instance. + A MethodBase instance. + + + + Gets the name of the method. + + + + + Gets the type the method is declared on. + + + + + Gets the type of value pushed onto the stack after calling this method. + + + + + Gets the number of required parameters. + + + + + Gets the number of optional parameters. + + + + + Gets a value that indicates whether the last parameter is a ParamArray. + + + + + Gets the type of element in the ParamArray array. + + + + + Gets an array of method parameters. + + An array of ParameterInfo instances describing the method parameters. + + + + Determines if this method can be called with the given number of arguments. + + The desired number of arguments. + true if this method can be called with the given number of arguments; + false otherwise. + + + + Gets an enumerable list of argument objects, equal in size to + . + + The number of arguments to return. + An enumerable list of argument objects. + + + + Gets an enumerable list of argument objects, equal in size to + while generating code to prepare those arguments for + a method call. + + The number of arguments to return. + The IL generator used to create an array if the method has a + ParamArray parameter. + An enumerable list of argument objects. + + + + Generates code to call the method. + + The IL generator. + + + + Returns a string representing this object. + + A string representing this object. + + + + Represents a single method argument. + + + + + Gets the intended source of the argument. + + + + + Gets the argument index, starting from zero. Only valid if Source is InputParameter. + + + + + Gets the type of the argument. + + + + + Gets a value that indicates whether this argument will be rolled up into an array. + + + + + Gets a value that indicates whether this argument has a default value. + + + + + Gets the default value for this argument. + + + + + Gets an attribute instance of the given type, if it exists on the argument. + + The type of attribute to retrieve. + An attribute instance, or null if the attribute does not exist on the + argument. + + + + This class is intended only for internal use. + + + + + Given a set of methods and a set of arguments, determines whether one of the methods + can be unambiguously selected. Throws an exception if this is not the case. + + An array of handles to the candidate methods. + The associated script engine. + The value of the "this" keyword. + An array of parameter values. + The index of the selected method. + + + + Binds to a method group using pretty standard .NET rules. The main difference from the + JSBinder is that the number of arguments must be correct. Additionally, it is possible to + bind to overloaded methods with the same number of arguments. + + + + + Creates a new ClrBinder instance. + + A method to bind to. + + + + Creates a new ClrBinder instance. + + An enumerable list of methods to bind to. + + + + Creates a new ClrBinder instance. + + An enumerable list of methods to bind to. + + + + Generates a method that does type conversion and calls the bound method. + + The ILGenerator used to output the body of the method. + The number of arguments that will be passed to the delegate. + A delegate that does type conversion and calls the method represented by this + object. + + + + Pops the value on the stack, converts it from an object to the given type, then pushes + the result onto the stack. + + The IL generator. + The type to convert to. + true if the value is intended for use as an + instance pointer; false otherwise. + + + + Pops the value on the stack, converts it to an object, then pushes the result onto the + stack. + + The IL generator. + The type to convert from. + + + + Base class of field getter and setter binders. + + + + + Creates a new FieldGetterBinder instance. + + The field. + + + + Gets the name of the target methods. + + + + + Gets the full name of the target methods, including the type name. + + + + + Retrieves the value of a field. + + + + + Creates a new FieldGetterBinder instance. + + The field. + + + + Generates a method that does type conversion and calls the bound method. + + The ILGenerator used to output the body of the method. + The number of arguments that will be passed to the delegate. + A delegate that does type conversion and calls the method represented by this + object. + + + + Sets the value of a field. + + + + + Creates a new FieldSetterBinder instance. + + The field. + + + + Generates a method that does type conversion and calls the bound method. + + The ILGenerator used to output the body of the method. + The number of arguments that will be passed to the delegate. + A delegate that does type conversion and calls the method represented by this + object. + + + + Binds to a method group using the default javascript rules (extra parameter values are + ignored, missing parameter values are replaced with "undefined"). + + + + + Creates a new JSBinder instance. + + An array of methods to bind to. + + + + Creates a new JSBinder instance. + + An enumerable list of methods to bind to. + + + + Generates a method that does type conversion and calls the bound method. + + The ILGenerator used to output the body of the method. + The number of arguments that will be passed to the delegate. + A delegate that does type conversion and calls the method represented by this + object. + + + + Pops the value on the stack, converts it from one type to another, then pushes the + result onto the stack. Undefined is converted to the given default value. + + The IL generator. + The type to convert from. + The type and default value of the target parameter. + + + + Pops the value on the stack, converts it from one type to another, then pushes the + result onto the stack. + + The IL generator. + The type to convert from. + The type to convert to. + + + + Pushes the result of converting undefined to the given type onto the stack. + + The IL generator. + The type to convert to, and optionally a default value. + + + + Represents a single method that the JS function binder can call. + + + + + Creates a new FunctionBinderMethod instance. + + The method to call. + Flags that modify the binding process. + + + + Creates a new FunctionBinderMethod instance. + + Flags that modify the binding process. + + + + Gets the flags that were passed to the constructor. + + + + + Gets a value that indicates whether the script engine should be passed as the first + parameter. Always false for instance methods. + + + + + Gets a value that indicates whether the "this" object should be passed as the first + parameter (or the second parameter if HasEngineParameter is true). Always false + for instance methods. + + + + + Gets the type of the explicit "this" value passed to this method. Will be null + if there is no explicit this value. + + + + + Gets the maximum number of parameters that this method requires (excluding the implicit + this parameter). + + + + + Gets an array of method parameters. + + An array of ParameterInfo instances describing the method parameters. + + + + Gets an enumerable list of argument objects, equal in size to + . + + The number of arguments to return. + An enumerable list of argument objects. + + + + Selects a method from a list of candidates and performs type conversion from actual + argument type to formal argument type. + + + + + Creates a new Binder instance. + + A method to bind to. + + + + Creates a new Binder instance. + + An enumerable list of methods to bind to. At least one + method must be provided. Every method must have the same name and declaring type. + + + + Gets the name of the target methods. + + + + + Gets the full name of the target methods, including the type name. + + + + + Gets the maximum number of arguments of any of the target methods. Used to set the + length property on the function. + + + + + Represents a line and column number in a source file. + + + + + Creates a new SourceCodePosition instance. + + The line number. Must be greater than zero. + The column number. Must be greater than zero. + + + + Gets the line number. + + + + + Gets the column number. + + + + + Represents a portion of source code. + + + + + Creates a new SourceCodeSpan instance. + + The start line of this SourceCodeSpan. Must be greater than + zero. + The start column of this SourceCodeSpan. Must be greater + than zero. + The end line of this SourceCodeSpan. Must be greater than + . + The end column of this SourceCodeSpan. Must be greater than + . + + + + Creates a new SourceCodeSpan instance. + + The start line and column of this SourceCodeSpan. + The end line and column of this SourceCodeSpan. + + + + Gets the starting line number of this range. + + + + + Gets the starting column number of this range. + + + + + Gets the ending line number of this range. + + + + + Gets the ending column number of this range. + + + + + Outputs IL that converts between types. + + + + + Pops the value on the stack, converts it to the given type, then pushes the result + onto the stack. + + The IL generator. + The type to convert from. + The type to convert to. + + + + Pops the value on the stack, converts it to the given type, then pushes the result + onto the stack. + + The IL generator. + The type to convert from. + The type to convert to. + Information about the line number, function and path. + + + + Pops the value on the stack, converts it to the given type, then pushes the result + onto the stack. + + The IL generator. + The type to convert from. + The type to convert to. + The path of the javascript source file that is currently executing. + The name of the currently executing function. + The line number of the statement that is currently executing. + + + + Pops the value on the stack, converts it to a boolean, then pushes the boolean result + onto the stack. + + The IL generator. + The type to convert from. + + + + Pops the value on the stack, converts it to an integer, then pushes the integer result + onto the stack. + + The IL generator. + The type to convert from. + + + + Pops the value on the stack, converts it to an integer, then pushes the integer result + onto the stack. Large numbers wrap (i.e. 4294967296 -> 0). + + The IL generator. + The type to convert from. + + + + Pops the value on the stack, converts it to an unsigned integer, then pushes the + integer result onto the stack. Large numbers wrap (i.e. 4294967296 -> 0). + + The IL generator. + The type to convert from. + + + + Pops the value on the stack, converts it to a double, then pushes the double result + onto the stack. + + The IL generator. + The type to convert from. + + + + Pops the value on the stack, converts it to a string, then pushes the result onto the + stack. + + The IL generator. + The type to convert from. + + + + Pops the value on the stack, converts it to a concatenated string, then pushes the result + onto the stack. + + The IL generator. + The type to convert from. + + + + Pops the value on the stack, converts it to a javascript object, then pushes the result + onto the stack. + + The IL generator. + The type to convert from. + Information about the line number, function and path. + + + + Pops the value on the stack, converts it to a javascript object, then pushes the result + onto the stack. + + The IL generator. + The type to convert from. + The path of the javascript source file that is currently executing. + The name of the currently executing function. + The line number of the statement that is currently executing. + + + + Pops the value on the stack, converts it to a primitive value, then pushes the result + onto the stack. + + The IL generator. + The type to convert from. + Specifies whether toString() or valueOf() should be + preferred when converting to a primitive. + + + + Pops the value on the stack, converts it to an object, then pushes the result onto the + stack. + + The IL generator. + The type to convert from. + + + + Pops the value on the stack, converts it to a property key (either a symbol or a + string), then pushes the result onto the stack. + + The IL generator. + The type to convert from. + + + + Outputs IL for misc tasks. + + + + + Emits undefined. + + The IL generator. + + + + Emits null. + + The IL generator. + + + + Emits a default value of the given type. + + The IL generator. + The type of value to generate. + + + + Emits a dummy value of the given type. + + The IL generator. + The type of value to generate. + + + + Emits a JavaScriptException. + + The IL generator. + The type of error to generate, e.g. Error, RangeError, etc. + The error message. + + + + Emits a JavaScriptException. + + The IL generator. + The type of error to generate, e.g. Error, RangeError, etc. + The error message. + Information about the line number, function and path. + + + + Emits a JavaScriptException. + + The IL generator. + The type of error to generate, e.g. Error, RangeError, etc. + The error message. + The path of the javascript source file that is currently executing. + The name of the currently executing function. + The line number of the statement that is currently executing. + + + + Emits the given value. Only possible for certain types. + + The IL generator. + The value to emit. + + + + Pushes the value of the execution context onto the stack. + + The IL generator. + + + + Pushes a reference to the script engine onto the stack. + + The IL generator. + + + + Pushes the value of the this keyword onto the stack. + + The IL generator. + + + + Pushes a reference to the current function onto the stack. + + The IL generator. + + + + Pushes a reference to the 'new.target' value for the current function onto the stack. + + The IL generator. + + + + Pushes a reference to the array of argument values for the current function onto the + stack. + + The IL generator. + + + + Represents a generator of CIL bytes. + + + + + Gets a reference to the method that we are generating IL for. + + + + + Emits a return statement and finalizes the generated code. Do not emit any more + instructions after calling this method. + + + + + Pops the value from the top of the stack. + + + + + Duplicates the value on the top of the stack. + + + + + Creates a label without setting its position. + + A new label. + + + + Defines the position of the given label. + + The label to define. + + + + Creates a label and sets its position. + + A new label. + + + + Unconditionally branches to the given label. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is zero, false or + null. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is non-zero, true or + non-null. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is zero, false or + null. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is non-zero, true or + non-null. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is zero, false or + null. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is non-zero, true or + non-null. + + The label to branch to. + + + + Branches to the given label if the two values on the top of the stack are equal. + + The label to branch to. + + + + Branches to the given label if the two values on the top of the stack are not equal. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than the second + value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than the second + value on the stack. If the operands are integers then they are treated as if they are + unsigned. If the operands are floating point numbers then a NaN value will trigger a + branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than or equal to + the second value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than or equal to + the second value on the stack. If the operands are integers then they are treated as + if they are unsigned. If the operands are floating point numbers then a NaN value will + trigger a branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than the second + value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than the second + value on the stack. If the operands are integers then they are treated as if they are + unsigned. If the operands are floating point numbers then a NaN value will trigger a + branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than or equal to + the second value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than or equal to + the second value on the stack. If the operands are integers then they are treated as + if they are unsigned. If the operands are floating point numbers then a NaN value will + trigger a branch. + + The label to branch to. + + + + Returns from the current method. A value is popped from the stack and used as the + return value. + + + + + Creates a jump table. A value is popped from the stack - this value indicates the + index of the label in the array to jump to. + + A array of labels. + + + + Declares a new local variable. + + The type of the local variable. + The name of the local variable. Can be null. + A new local variable. + + + + Declares a new local variable. + + The type of the local variable. + The name of the local variable. Can be null. + A new local variable. + + + + Pushes the value of the given variable onto the stack. + + The variable whose value will be pushed. + + + + Pushes the address of the given variable onto the stack. + + The variable whose address will be pushed. + + + + Pops the value from the top of the stack and stores it in the given local variable. + + The variable to store the value. + + + + Pushes the value of the method argument with the given index onto the stack. + + The index of the argument to push onto the stack. + + + + Pops a value from the stack and stores it in the method argument with the given index. + + The index of the argument to store into. + + + + Retrieves a temporary variable with the given type, reusing a previous variable if + possible. + + The type of variable to create. + A temporary variable + + + + Retrieves a temporary variable with the given type, reusing a previous variable if + possible. + + The type of variable to create. + A temporary variable + + + + Indicates that the given temporary variable is no longer needed. + + The temporary variable created using CreateTemporaryVariable(). + + + + Pushes null onto the stack. + + + + + Pushes a constant value onto the stack. + + The boolean to push onto the stack. + + + + Pushes a constant value onto the stack. + + The integer to push onto the stack. + + + + Pushes an unsigned constant value onto the stack. + + The integer to push onto the stack. + + + + Pushes a 64-bit constant value onto the stack. + + The 64-bit integer to push onto the stack. + + + + Pushes an unsigned 64-bit constant value onto the stack. + + The 64-bit integer to push onto the stack. + + + + Pushes a constant value onto the stack. + + The number to push onto the stack. + + + + Pushes a constant value onto the stack. + + The string to push onto the stack. + + + + Pushes a constant value onto the stack. + + The string to push onto the stack. Can be null. + + + + Pushes a constant value onto the stack. + + The enum value to push onto the stack. + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is equal to the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is greater than the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is greater than the second, or 0 otherwise. Produces 1 if one or both + of the arguments are NaN. Integers are considered to be unsigned. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is less than the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is less than the second, or 0 otherwise. Produces 1 if one or both + of the arguments are NaN. Integers are considered to be unsigned. + + + + + Pops two values from the stack, adds them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, subtracts the second from the first, then pushes the + result to the stack. + + + + + Pops two values from the stack, multiplies them together, then pushes the + result to the stack. + + + + + Pops two values from the stack, divides the first by the second, then pushes the + result to the stack. + + + + + Pops two values from the stack, divides the first by the second, then pushes the + remainder to the stack. + + + + + Pops a value from the stack, negates it, then pushes it back onto the stack. + + + + + Pops two values from the stack, ANDs them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, ORs them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, XORs them together, then pushes the result to the + stack. + + + + + Pops a value from the stack, inverts it, then pushes the result to the stack. + + + + + Pops two values from the stack, shifts the first to the left, then pushes the result + to the stack. + + + + + Pops two values from the stack, shifts the first to the right, then pushes the result + to the stack. The sign bit is preserved. + + + + + Pops two values from the stack, shifts the first to the right, then pushes the result + to the stack. The sign bit is not preserved. + + + + + Pops a value from the stack, converts it to an object reference, then pushes it back onto + the stack. + + The type of value to box. This should be a value type. + + + + Pops a value from the stack, converts it to an object reference, then pushes it back onto + the stack. + + The type of value to box. This should be a value type. + + + + Pops an object reference (representing a boxed value) from the stack, extracts the + address, then pushes that address onto the stack. + + The type of the boxed value. This should be a value type. + + + + Pops an object reference (representing a boxed value) from the stack, extracts the + address, then pushes that address onto the stack. + + The type of the boxed value. This should be a value type. + + + + Pops an object reference (representing a boxed value) from the stack, extracts the value, + then pushes the value onto the stack. + + The type of the boxed value. This should be a value type. + + + + Pops an object reference (representing a boxed value) from the stack, extracts the value, + then pushes the value onto the stack. + + The type of the boxed value. This should be a value type. + + + + Pops a value from the stack, converts it to a signed integer, then pushes it back onto + the stack. + + + + + Pops a value from the stack, converts it to an unsigned integer, then pushes it back + onto the stack. + + + + + Pops a value from the stack, converts it to a signed 64-bit integer, then pushes it + back onto the stack. + + + + + Pops a value from the stack, converts it to an unsigned 64-bit integer, then pushes it + back onto the stack. + + + + + Pops a value from the stack, converts it to a double, then pushes it back onto + the stack. + + + + + Pops an unsigned integer from the stack, converts it to a double, then pushes it back onto + the stack. + + + + + Pops the constructor arguments off the stack and creates a new instance of the object. + + The constructor that is used to initialize the object. + + + + Pops the method arguments off the stack, calls the given method, then pushes the result + to the stack (if there was one). Identical to CallStatic() if the method is a static + method (or is declared on a value type) or CallVirtual() otherwise. + + The method to call. + + + + Pops the method arguments off the stack, calls the given method, then pushes the result + to the stack (if there was one). This operation can be used to call instance methods, + but virtual overrides will not be called and a null check will not be performed at the + callsite. + + The method to call. + + + + Pops the method arguments off the stack, calls the given method, then pushes the result + to the stack (if there was one). This operation cannot be used to call static methods. + Virtual overrides are obeyed and a null check is performed. + + The method to call. + The method is static. + + + + Pushes the value of the given field onto the stack. + + The field whose value will be pushed. + + + + Pops a value off the stack and stores it in the given field. + + The field to modify. + + + + Pops an object off the stack, checks that the object inherits from or implements the + given type, and pushes the object onto the stack if the check was successful or + throws an InvalidCastException if the check failed. + + The type of the class the object inherits from or the interface the + object implements. + + + + Changes the type of the value on the top of the stack, for the purpose of passing + verification. Doesn't generate any IL instructions. + + The type to convert to. + + + + Pops an object off the stack, checks that the object inherits from or implements the + given type, and pushes either the object (if the check was successful) or null + (if the check failed) onto the stack. + + The type of the class the object inherits from or the interface the + object implements. + + + + Pushes a RuntimeTypeHandle corresponding to the given type onto the evaluation stack. + + The type to convert to a RuntimeTypeHandle. + + + + Pushes a RuntimeMethodHandle corresponding to the given method onto the evaluation + stack. + + The method to convert to a RuntimeMethodHandle. + + + + Pushes a RuntimeFieldHandle corresponding to the given field onto the evaluation stack. + + The type to convert to a RuntimeFieldHandle. + + + + Pushes a pointer to the native code implementing the given method onto the evaluation + stack. The virtual qualifier will be ignored, if present. + + The method to retrieve a pointer for. + + + + Pushes a pointer to the native code implementing the given method onto the + evaluation stack. This method cannot be used to retrieve a pointer to a static method. + + The method to retrieve a pointer for. + The method is static. + + + + Pushes a pointer to the native code implementing the given method onto the evaluation + stack. This method is identical to LoadStaticMethodPointer() if the method is a static + method (or is declared on a value type) or LoadVirtualMethodPointer() otherwise. + + The method to retrieve a pointer for. + + + + Pops a managed or native pointer off the stack and initializes the referenced type with + zeros. + + The type the pointer on the top of the stack is pointing to. + + + + Pops the size of the array off the stack and pushes a new array of the given type onto + the stack. + + The element type. + + + + Pops the array and index off the stack and pushes the element value onto the stack. + + The element type. + + + + Pops the array and index off the stack and pushes the element value onto the stack. + + The element type. + + + + Pops the array, index and value off the stack and stores the value in the array. + + The element type. + + + + Pops the array, index and value off the stack and stores the value in the array. + + The element type. + + + + Pops an array off the stack and pushes the length of the array onto the stack. + + + + + Pops an exception object off the stack and throws the exception. + + + + + Re-throws the current exception. + + + + + Begins a try-catch-finally block. After issuing this instruction any following + instructions are conceptually within the try block. + + + + + Ends a try-catch-finally block. + + + + + Begins a catch block. BeginExceptionBlock() must have already been called. + + The type of exception to handle. + + + + Begins a finally block. BeginExceptionBlock() must have already been called. + + + + + Begins a filter block. BeginExceptionBlock() must have already been called. + + + + + Begins a fault block. BeginExceptionBlock() must have already been called. + + + + + Unconditionally branches to the given label. Unlike the regular branch instruction, + this instruction can exit out of try, filter and catch blocks. + + The label to branch to. + + + + This instruction can be used from within a finally block to resume the exception + handling process. It is the only valid way of leaving a finally block. + + + + + This instruction can be used from within a fault block to resume the exception + handling process. It is the only valid way of leaving a fault block. + + + + + This instruction can be used from within a filter block to indicate whether the + exception will be handled. It pops an integer from the stack which should be 0 + to continue searching for an exception handler or 1 to use the handler + associated with the filter. EndFilter() must be called at the end of a filter block. + + + + + Triggers a breakpoint in an attached debugger. + + + + + Does nothing. + + + + + Represents a label in IL code. + + + + + Represents a label in IL code. + + + + + Creates a new label instance. + + The underlying label. + + + + Gets the underlying label. + + + + + Represents a local variable in CIL code. + + + + + Gets the zero-based index of the local variable within the method body. + + + + + Gets the type of the local variable. + + + + + Gets the local variable name, or null if a name was not provided. + + + + + Represents a local variable in CIL code. + + + + + Creates a new local variable instance. + + The underlying local variable. + The name of the local variable. Can be null. + + + + Gets the underlying local variable. + + + + + Gets the zero-based index of the local variable within the method body. + + + + + Gets the type of the local variable. + + + + + Gets the local variable name, or null if a name was not provided. + + + + + Represents a generator that logs all operations. + + + + + Creates a new LoggingILGenerator instance. + + The ILGenerator that is used to output the IL. + + + + Gets a reference to the method that we are generating IL for. + + + + + Emits a return statement and finalizes the generated code. Do not emit any more + instructions after calling this method. + + + + + Pops the value from the top of the stack. + + + + + Duplicates the value on the top of the stack. + + + + + Creates a label without setting its position. + + A new label. + + + + Defines the position of the given label. + + The label to define. + + + + Unconditionally branches to the given label. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is zero. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is non-zero, true or + non-null. + + The label to branch to. + + + + Branches to the given label if the two values on the top of the stack are equal. + + The label to branch to. + + + + Branches to the given label if the two values on the top of the stack are not equal. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than the second + value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than the second + value on the stack. If the operands are integers then they are treated as if they are + unsigned. If the operands are floating point numbers then a NaN value will trigger a + branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than or equal to + the second value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than or equal to + the second value on the stack. If the operands are integers then they are treated as + if they are unsigned. If the operands are floating point numbers then a NaN value will + trigger a branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than the second + value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than the second + value on the stack. If the operands are integers then they are treated as if they are + unsigned. If the operands are floating point numbers then a NaN value will trigger a + branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than or equal to + the second value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than or equal to + the second value on the stack. If the operands are integers then they are treated as + if they are unsigned. If the operands are floating point numbers then a NaN value will + trigger a branch. + + The label to branch to. + + + + Returns from the current method. A value is popped from the stack and used as the + return value. + + + + + Creates a jump table. A value is popped from the stack - this value indicates the + index of the label in the array to jump to. + + A array of labels. + + + + Declares a new local variable. + + The type of the local variable. + The name of the local variable. Can be null. + A new local variable. + + + + Pushes the value of the given variable onto the stack. + + The variable whose value will be pushed. + + + + Pushes the address of the given variable onto the stack. + + The variable whose address will be pushed. + + + + Pops the value from the top of the stack and stores it in the given local variable. + + The variable to store the value. + + + + Pushes the value of the method argument with the given index onto the stack. + + The index of the argument to push onto the stack. + + + + Pops a value from the stack and stores it in the method argument with the given index. + + The index of the argument to store into. + + + + Pushes null onto the stack. + + + + + Pushes a constant value onto the stack. + + The integer to push onto the stack. + + + + Pushes a 64-bit constant value onto the stack. + + The 64-bit integer to push onto the stack. + + + + Pushes a constant value onto the stack. + + The number to push onto the stack. + + + + Pushes a constant value onto the stack. + + The string to push onto the stack. + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is equal to the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is greater than the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is greater than the second, or 0 otherwise. Produces 1 if one or both + of the arguments are NaN. Integers are considered to be unsigned. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is less than the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is less than the second, or 0 otherwise. Produces 1 if one or both + of the arguments are NaN. Integers are considered to be unsigned. + + + + + Pops two values from the stack, adds them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, subtracts the second from the first, then pushes the + result to the stack. + + + + + Pops two values from the stack, multiplies them together, then pushes the + result to the stack. + + + + + Pops two values from the stack, divides the first by the second, then pushes the + result to the stack. + + + + + Pops two values from the stack, divides the first by the second, then pushes the + remainder to the stack. + + + + + Pops a value from the stack, negates it, then pushes it back onto the stack. + + + + + Pops two values from the stack, ANDs them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, ORs them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, XORs them together, then pushes the result to the + stack. + + + + + Pops a value from the stack, inverts it, then pushes the result to the stack. + + + + + Pops two values from the stack, shifts the first to the left, then pushes the result + to the stack. + + + + + Pops two values from the stack, shifts the first to the right, then pushes the result + to the stack. The sign bit is preserved. + + + + + Pops two values from the stack, shifts the first to the right, then pushes the result + to the stack. The sign bit is not preserved. + + + + + Pops a value from the stack, converts it to an object reference, then pushes it back onto + the stack. + + + + + Pops an object reference (representing a boxed value) from the stack, extracts the + address, then pushes that address onto the stack. + + The type of the boxed value. This should be a value type. + + + + Pops an object reference (representing a boxed value) from the stack, extracts the value, + then pushes the value onto the stack. + + The type of the boxed value. This should be a value type. + + + + Pops a value from the stack, converts it to a signed integer, then pushes it back onto + the stack. + + + + + Pops a value from the stack, converts it to an unsigned integer, then pushes it back + onto the stack. + + + + + Pops a value from the stack, converts it to a signed 64-bit integer, then pushes it + back onto the stack. + + + + + Pops a value from the stack, converts it to an unsigned 64-bit integer, then pushes it + back onto the stack. + + + + + Pops a value from the stack, converts it to a double, then pushes it back onto + the stack. + + + + + Pops an unsigned integer from the stack, converts it to a double, then pushes it back onto + the stack. + + + + + Pops the constructor arguments off the stack and creates a new instance of the object. + + The constructor that is used to initialize the object. + + + + Pops the method arguments off the stack, calls the given method, then pushes the result + to the stack (if there was one). This operation can be used to call instance methods, + but virtual overrides will not be called and a null check will not be performed at the + callsite. + + The method to call. + + + + Pops the method arguments off the stack, calls the given method, then pushes the result + to the stack (if there was one). This operation cannot be used to call static methods. + Virtual overrides are obeyed and a null check is performed. + + The method to call. + The method is static. + + + + Pushes the value of the given field onto the stack. + + The field whose value will be pushed. + + + + Pops a value off the stack and stores it in the given field. + + The field to modify. + + + + Pops an object off the stack, checks that the object inherits from or implements the + given type, and pushes the object onto the stack if the check was successful or + throws an InvalidCastException if the check failed. + + The type of the class the object inherits from or the interface the + object implements. + + + + Pops an object off the stack, checks that the object inherits from or implements the + given type, and pushes either the object (if the check was successful) or null + (if the check failed) onto the stack. + + The type of the class the object inherits from or the interface the + object implements. + + + + Pushes a RuntimeTypeHandle corresponding to the given type onto the evaluation stack. + + The type to convert to a RuntimeTypeHandle. + + + + Pushes a RuntimeMethodHandle corresponding to the given method onto the evaluation + stack. + + The method to convert to a RuntimeMethodHandle. + + + + Pushes a RuntimeFieldHandle corresponding to the given field onto the evaluation stack. + + The type to convert to a RuntimeFieldHandle. + + + + Pushes a pointer to the native code implementing the given method onto the evaluation + stack. The virtual qualifier will be ignored, if present. + + The method to retrieve a pointer for. + + + + Pushes a pointer to the native code implementing the given method onto the evaluation + stack. This method cannot be used to retrieve a pointer to a static method. + + The method to retrieve a pointer for. + The method is static. + + + + Pops a managed or native pointer off the stack and initializes the referenced type with + zeros. + + The type the pointer on the top of the stack is pointing to. + + + + Pops the size of the array off the stack and pushes a new array of the given type onto + the stack. + + The element type. + + + + Pops the array and index off the stack and pushes the element value onto the stack. + + The element type. + + + + Pops the array, index and value off the stack and stores the value in the array. + + The element type. + + + + Pops an array off the stack and pushes the length of the array onto the stack. + + + + + Pops an exception object off the stack and throws the exception. + + + + + Rethrows the current exception. + + + + + Begins a try-catch-finally block. After issuing this instruction any following + instructions are conceptually within the try block. + + + + + Ends a try-catch-finally block. BeginExceptionBlock() must have already been called. + + + + + Begins a catch block. BeginExceptionBlock() must have already been called. + + The type of exception to handle. + + + + Begins a finally block. BeginExceptionBlock() must have already been called. + + + + + Begins a filter block. BeginExceptionBlock() must have already been called. + + + + + Begins a fault block. BeginExceptionBlock() must have already been called. + + + + + Unconditionally branches to the given label. Unlike the regular branch instruction, + this instruction can exit out of try, filter and catch blocks. + + The label to branch to. + + + + This instruction can be used from within a finally block to resume the exception + handling process. It is the only valid way of leaving a finally block. + + + + + This instruction can be used from within a filter block to indicate whether the + exception will be handled. It pops an integer from the stack which should be 0 + to continue searching for an exception handler or 1 to use the handler + associated with the filter. EndFilter() must be called at the end of a filter block. + + + + + Triggers a breakpoint in an attached debugger. + + + + + Does nothing. + + + + + Converts the object to a string. + + A string containing the IL generated by this object. + + + + Outputs an instruction to the log. + + The instruction to output. + + + + Outputs an instruction and a label to the log. + + The instruction to output. + The label to output. + + + + Outputs an instruction and a number of labels to the log. + + The instruction to output. + The labels to output. + + + + Appends the name of a label to the log. + + The label to convert. + A string representation of the label. + + + + Outputs an instruction and a variable to the log. + + The instruction to output. + The variable to output. + + + + Outputs an instruction and an integer to the log. + + The instruction to output. + The integer to output. + + + + Outputs an instruction and a 64-bit integer to the log. + + The instruction to output. + The 64-bit integer to output. + + + + Outputs an instruction and a floating-point value to the log. + + The instruction to output. + The floating-point vaue to output. + + + + Outputs an instruction and a string literal to the log. + + The instruction to output. + The string literal to output. + + + + Outputs an instruction and a type to the log. + + The instruction to output. + The type to output. + + + + Outputs an instruction and a method to the log. + + The instruction to output. + The method to output. + + + + Outputs an instruction and a field to the log. + + The instruction to output. + The field to output. + + + + Outputs an instruction and a constructor to the log. + + The instruction to output. + The constructor to output. + + + + Outputs an instruction and an arbitrary suffix to the log. + + The instruction to output. + A suffix to output. + + + + Outputs arbitrary text to the log. + + The text to output. + + + + Represents a generator of CIL bytes. + + + + + Creates a new ReflectionEmitILGenerator instance from a DynamicMethod. + + The DynamicMethod to emit IL for. + Indicates whether to emit debugging information, like symbol names. + + + + Gets a reference to the method that we are generating IL for. + + + + + Emits a return statement and finalizes the generated code. Do not emit any more + instructions after calling this method. + + + + + Pops the value from the top of the stack. + + + + + Duplicates the value on the top of the stack. + + + + + Creates a label without setting its position. + + A new label. + + + + Defines the position of the given label. + + The label to define. + + + + Unconditionally branches to the given label. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is zero. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is non-zero, true or + non-null. + + The label to branch to. + + + + Branches to the given label if the two values on the top of the stack are equal. + + The label to branch to. + + + + Branches to the given label if the two values on the top of the stack are not equal. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than the second + value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than the second + value on the stack. If the operands are integers then they are treated as if they are + unsigned. If the operands are floating point numbers then a NaN value will trigger a + branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than or equal to + the second value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than or equal to + the second value on the stack. If the operands are integers then they are treated as + if they are unsigned. If the operands are floating point numbers then a NaN value will + trigger a branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than the second + value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than the second + value on the stack. If the operands are integers then they are treated as if they are + unsigned. If the operands are floating point numbers then a NaN value will trigger a + branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than or equal to + the second value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than or equal to + the second value on the stack. If the operands are integers then they are treated as + if they are unsigned. If the operands are floating point numbers then a NaN value will + trigger a branch. + + The label to branch to. + + + + Returns from the current method. A value is popped from the stack and used as the + return value. + + + + + Creates a jump table. A value is popped from the stack - this value indicates the + index of the label in the array to jump to. + + A array of labels. + + + + Declares a new local variable. + + The type of the local variable. + The name of the local variable. Can be null. + A new local variable. + + + + Pushes the value of the given variable onto the stack. + + The variable whose value will be pushed. + + + + Pushes the address of the given variable onto the stack. + + The variable whose address will be pushed. + + + + Pops the value from the top of the stack and stores it in the given local variable. + + The variable to store the value. + + + + Pushes the value of the method argument with the given index onto the stack. + + The index of the argument to push onto the stack. + + + + Pops a value from the stack and stores it in the method argument with the given index. + + The index of the argument to store into. + + + + Pushes null onto the stack. + + + + + Pushes a constant value onto the stack. + + The integer to push onto the stack. + + + + Pushes a 64-bit constant value onto the stack. + + The 64-bit integer to push onto the stack. + + + + Pushes a constant value onto the stack. + + The number to push onto the stack. + + + + Pushes a constant value onto the stack. + + The string to push onto the stack. + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is equal to the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is greater than the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is greater than the second, or 0 otherwise. Produces 1 if one or both + of the arguments are NaN. Integers are considered to be unsigned. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is less than the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is less than the second, or 0 otherwise. Produces 1 if one or both + of the arguments are NaN. Integers are considered to be unsigned. + + + + + Pops two values from the stack, adds them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, subtracts the second from the first, then pushes the + result to the stack. + + + + + Pops two values from the stack, multiplies them together, then pushes the + result to the stack. + + + + + Pops two values from the stack, divides the first by the second, then pushes the + result to the stack. + + + + + Pops two values from the stack, divides the first by the second, then pushes the + remainder to the stack. + + + + + Pops a value from the stack, negates it, then pushes it back onto the stack. + + + + + Pops two values from the stack, ANDs them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, ORs them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, XORs them together, then pushes the result to the + stack. + + + + + Pops a value from the stack, inverts it, then pushes the result to the stack. + + + + + Pops two values from the stack, shifts the first to the left, then pushes the result + to the stack. + + + + + Pops two values from the stack, shifts the first to the right, then pushes the result + to the stack. The sign bit is preserved. + + + + + Pops two values from the stack, shifts the first to the right, then pushes the result + to the stack. The sign bit is not preserved. + + + + + Pops a value from the stack, converts it to an object reference, then pushes it back onto + the stack. + + + + + Pops an object reference (representing a boxed value) from the stack, extracts the + address, then pushes that address onto the stack. + + The type of the boxed value. This should be a value type. + + + + Pops an object reference (representing a boxed value) from the stack, extracts the value, + then pushes the value onto the stack. + + The type of the boxed value. This should be a value type. + + + + Pops a value from the stack, converts it to a signed integer, then pushes it back onto + the stack. + + + + + Pops a value from the stack, converts it to an unsigned integer, then pushes it back + onto the stack. + + + + + Pops a value from the stack, converts it to a signed 64-bit integer, then pushes it + back onto the stack. + + + + + Pops a value from the stack, converts it to an unsigned 64-bit integer, then pushes it + back onto the stack. + + + + + Pops a value from the stack, converts it to a double, then pushes it back onto + the stack. + + + + + Pops an unsigned integer from the stack, converts it to a double, then pushes it back onto + the stack. + + + + + Pops the constructor arguments off the stack and creates a new instance of the object. + + The constructor that is used to initialize the object. + + + + Pops the method arguments off the stack, calls the given method, then pushes the result + to the stack (if there was one). This operation can be used to call instance methods, + but virtual overrides will not be called and a null check will not be performed at the + callsite. + + The method to call. + + + + Pops the method arguments off the stack, calls the given method, then pushes the result + to the stack (if there was one). This operation cannot be used to call static methods. + Virtual overrides are obeyed and a null check is performed. + + The method to call. + The method is static. + + + + Pushes the value of the given field onto the stack. + + The field whose value will be pushed. + + + + Pops a value off the stack and stores it in the given field. + + The field to modify. + + + + Pops an object off the stack, checks that the object inherits from or implements the + given type, and pushes the object onto the stack if the check was successful or + throws an InvalidCastException if the check failed. + + The type of the class the object inherits from or the interface the + object implements. + + + + Pops an object off the stack, checks that the object inherits from or implements the + given type, and pushes either the object (if the check was successful) or null + (if the check failed) onto the stack. + + The type of the class the object inherits from or the interface the + object implements. + + + + Pushes a RuntimeTypeHandle corresponding to the given type onto the evaluation stack. + + The type to convert to a RuntimeTypeHandle. + + + + Pushes a RuntimeMethodHandle corresponding to the given method onto the evaluation + stack. + + The method to convert to a RuntimeMethodHandle. + + + + Pushes a RuntimeFieldHandle corresponding to the given field onto the evaluation stack. + + The type to convert to a RuntimeFieldHandle. + + + + Pushes a pointer to the native code implementing the given method onto the evaluation + stack. The virtual qualifier will be ignored, if present. + + The method to retrieve a pointer for. + + + + Pushes a pointer to the native code implementing the given method onto the evaluation + stack. This method cannot be used to retrieve a pointer to a static method. + + The method to retrieve a pointer for. + The method is static. + + + + Pops a managed or native pointer off the stack and initializes the referenced type with + zeros. + + The type the pointer on the top of the stack is pointing to. + + + + Pops the size of the array off the stack and pushes a new array of the given type onto + the stack. + + The element type. + + + + Pops the array and index off the stack and pushes the element value onto the stack. + + The element type. + + + + Pops the array, index and value off the stack and stores the value in the array. + + The element type. + + + + Pops an array off the stack and pushes the length of the array onto the stack. + + + + + Pops an exception object off the stack and throws the exception. + + + + + Rethrows the current exception. + + + + + Begins a try-catch-finally block. After issuing this instruction any following + instructions are conceptually within the try block. + + + + + Ends a try-catch-finally block. BeginExceptionBlock() must have already been called. + + + + + Begins a catch block. BeginExceptionBlock() must have already been called. + + The type of exception to handle. + + + + Begins a finally block. BeginExceptionBlock() must have already been called. + + + + + Begins a filter block. BeginExceptionBlock() must have already been called. + + + + + Begins a fault block. BeginExceptionBlock() must have already been called. + + + + + Unconditionally branches to the given label. Unlike the regular branch instruction, + this instruction can exit out of try, filter and catch blocks. + + The label to branch to. + + + + This instruction can be used from within a finally block to resume the exception + handling process. It is the only valid way of leaving a finally block. + + + + + This instruction can be used from within a filter block to indicate whether the + exception will be handled. It pops an integer from the stack which should be 0 + to continue searching for an exception handler or 1 to use the handler + associated with the filter. EndFilter() must be called at the end of a filter block. + + + + + Triggers a breakpoint in an attached debugger. + + + + + Does nothing. + + + + + Represents a generator that checks commands for correctness. + + + + + Creates a new LoggingILGenerator instance. + + The ILGenerator that is used to output the IL. + + + + Gets a reference to the method that we are generating IL for. + + + + + Emits a return statement and finalizes the generated code. Do not emit any more + instructions after calling this method. + + + + + Pops the value from the top of the stack. + + + + + Duplicates the value on the top of the stack. + + + + + Creates a label without setting its position. + + A new label. + + + + Defines the position of the given label. + + The label to define. + + + + Unconditionally branches to the given label. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is zero. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is non-zero, true or + non-null. + + The label to branch to. + + + + Branches to the given label if the two values on the top of the stack are equal. + + The label to branch to. + + + + Branches to the given label if the two values on the top of the stack are not equal. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than the second + value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than the second + value on the stack. If the operands are integers then they are treated as if they are + unsigned. If the operands are floating point numbers then a NaN value will trigger a + branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than or equal to + the second value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is greater than or equal to + the second value on the stack. If the operands are integers then they are treated as + if they are unsigned. If the operands are floating point numbers then a NaN value will + trigger a branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than the second + value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than the second + value on the stack. If the operands are integers then they are treated as if they are + unsigned. If the operands are floating point numbers then a NaN value will trigger a + branch. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than or equal to + the second value on the stack. + + The label to branch to. + + + + Branches to the given label if the first value on the stack is less than or equal to + the second value on the stack. If the operands are integers then they are treated as + if they are unsigned. If the operands are floating point numbers then a NaN value will + trigger a branch. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is zero, false or + null. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is non-zero, true or + non-null. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is zero, false or + null. + + The label to branch to. + + + + Branches to the given label if the value on the top of the stack is non-zero, true or + non-null. + + The label to branch to. + + + + Returns from the current method. A value is popped from the stack and used as the + return value. + + + + + Creates a jump table. A value is popped from the stack - this value indicates the + index of the label in the array to jump to. + + A array of labels. + + + + Declares a new local variable. + + The type of the local variable. + The name of the local variable. Can be null. + A new local variable. + + + + Pushes the value of the given variable onto the stack. + + The variable whose value will be pushed. + + + + Pushes the address of the given variable onto the stack. + + The variable whose address will be pushed. + + + + Pops the value from the top of the stack and stores it in the given local variable. + + The variable to store the value. + + + + Pushes the value of the method argument with the given index onto the stack. + + The index of the argument to push onto the stack. + + + + Pops a value from the stack and stores it in the method argument with the given index. + + The index of the argument to store into. + + + + Pushes null onto the stack. + + + + + Pushes a constant value onto the stack. + + The boolean to push onto the stack. + + + + Pushes a constant value onto the stack. + + The integer to push onto the stack. + + + + Pushes a 64-bit constant value onto the stack. + + The 64-bit integer to push onto the stack. + + + + Pushes a constant value onto the stack. + + The number to push onto the stack. + + + + Pushes a constant value onto the stack. + + The string to push onto the stack. + + + + Pushes a constant value onto the stack. + + The enum value to push onto the stack. + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is equal to the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is greater than the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is greater than the second, or 0 otherwise. Produces 1 if one or both + of the arguments are NaN. Integers are considered to be unsigned. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is less than the second, or 0 otherwise. Produces 0 if one or both + of the arguments are NaN. + + + + + Pops two values from the stack, compares, then pushes 1 if the first argument + is less than the second, or 0 otherwise. Produces 1 if one or both + of the arguments are NaN. Integers are considered to be unsigned. + + + + + Pops two values from the stack, adds them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, subtracts the second from the first, then pushes the + result to the stack. + + + + + Pops two values from the stack, multiplies them together, then pushes the + result to the stack. + + + + + Pops two values from the stack, divides the first by the second, then pushes the + result to the stack. + + + + + Pops two values from the stack, divides the first by the second, then pushes the + remainder to the stack. + + + + + Pops a value from the stack, negates it, then pushes it back onto the stack. + + + + + Pops two values from the stack, ANDs them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, ORs them together, then pushes the result to the + stack. + + + + + Pops two values from the stack, XORs them together, then pushes the result to the + stack. + + + + + Pops a value from the stack, inverts it, then pushes the result to the stack. + + + + + Pops two values from the stack, shifts the first to the left, then pushes the result + to the stack. + + + + + Pops two values from the stack, shifts the first to the right, then pushes the result + to the stack. The sign bit is preserved. + + + + + Pops two values from the stack, shifts the first to the right, then pushes the result + to the stack. The sign bit is not preserved. + + + + + Pops a value from the stack, converts it to an object reference, then pushes it back onto + the stack. + + + + + Pops an object reference (representing a boxed value) from the stack, extracts the + address, then pushes that address onto the stack. + + The type of the boxed value. This should be a value type. + + + + Pops an object reference (representing a boxed value) from the stack, extracts the value, + then pushes the value onto the stack. + + The type of the boxed value. This should be a value type. + + + + Pops a value from the stack, converts it to a signed integer, then pushes it back onto + the stack. + + + + + Pops a value from the stack, converts it to an unsigned integer, then pushes it back + onto the stack. + + + + + Pops a value from the stack, converts it to a signed 64-bit integer, then pushes it + back onto the stack. + + + + + Pops a value from the stack, converts it to an unsigned 64-bit integer, then pushes it + back onto the stack. + + + + + Pops a value from the stack, converts it to a double, then pushes it back onto + the stack. + + + + + Pops an unsigned integer from the stack, converts it to a double, then pushes it back onto + the stack. + + + + + Pops the constructor arguments off the stack and creates a new instance of the object. + + The constructor that is used to initialize the object. + + + + Pops the method arguments off the stack, calls the given method, then pushes the result + to the stack (if there was one). This operation can be used to call instance methods, + but virtual overrides will not be called and a null check will not be performed at the + callsite. + + The method to call. + + + + Pops the method arguments off the stack, calls the given method, then pushes the result + to the stack (if there was one). This operation cannot be used to call static methods. + Virtual overrides are obeyed and a null check is performed. + + The method to call. + The method is static. + + + + Pushes the value of the given field onto the stack. + + The field whose value will be pushed. + + + + Pops a value off the stack and stores it in the given field. + + The field to modify. + + + + Pops an object off the stack, checks that the object inherits from or implements the + given type, and pushes the object onto the stack if the check was successful or + throws an InvalidCastException if the check failed. + + The type of the class the object inherits from or the interface the + object implements. + + + + Changes the type of the value on the top of the stack, for the purpose of passing + verification. Doesn't generate any IL instructions. + + The type to convert to. + + + + Pops an object off the stack, checks that the object inherits from or implements the + given type, and pushes either the object (if the check was successful) or null + (if the check failed) onto the stack. + + The type of the class the object inherits from or the interface the + object implements. + + + + Pushes a RuntimeTypeHandle corresponding to the given type onto the evaluation stack. + + The type to convert to a RuntimeTypeHandle. + + + + Pushes a RuntimeMethodHandle corresponding to the given method onto the evaluation + stack. + + The method to convert to a RuntimeMethodHandle. + + + + Pushes a RuntimeFieldHandle corresponding to the given field onto the evaluation stack. + + The type to convert to a RuntimeFieldHandle. + + + + Pushes a pointer to the native code implementing the given method onto the evaluation + stack. The virtual qualifier will be ignored, if present. + + The method to retrieve a pointer for. + + + + Pushes a pointer to the native code implementing the given method onto the evaluation + stack. This method cannot be used to retrieve a pointer to a static method. + + The method to retrieve a pointer for. + The method is static. + + + + Pops a managed or native pointer off the stack and initializes the referenced type with + zeros. + + The type the pointer on the top of the stack is pointing to. + + + + Pops the size of the array off the stack and pushes a new array of the given type onto + the stack. + + The element type. + + + + Pops the array and index off the stack and pushes the element value onto the stack. + + The element type. + + + + Pops the array, index and value off the stack and stores the value in the array. + + The element type. + + + + Pops an array off the stack and pushes the length of the array onto the stack. + + + + + Pops an exception object off the stack and throws the exception. + + + + + Rethrows the current exception. + + + + + Begins a try-catch-finally block. After issuing this instruction any following + instructions are conceptually within the try block. + + + + + Ends a try-catch-finally block. BeginExceptionBlock() must have already been called. + + + + + Begins a catch block. BeginExceptionBlock() must have already been called. + + The type of exception to handle. + + + + Begins a finally block. BeginExceptionBlock() must have already been called. + + + + + Begins a filter block. BeginExceptionBlock() must have already been called. + + + + + Begins a fault block. BeginExceptionBlock() must have already been called. + + + + + Unconditionally branches to the given label. Unlike the regular branch instruction, + this instruction can exit out of try, filter and catch blocks. + + The label to branch to. + + + + This instruction can be used from within a finally block to resume the exception + handling process. It is the only valid way of leaving a finally block. + + + + + This instruction can be used from within a filter block to indicate whether the + exception will be handled. It pops an integer from the stack which should be 0 + to continue searching for an exception handler or 1 to use the handler + associated with the filter. EndFilter() must be called at the end of a filter block. + + + + + Triggers a breakpoint in an attached debugger. + + + + + Does nothing. + + + + + Converts the object to a string. + + A string containing the IL generated by this object. + + + + Represents a label in IL code. + + + + + Creates a new label instance. + + The underlying label. + + + + Gets the underlying label. + + + + + A copy of the stack at the point the flow branched. + + + + + Indicates whether the label has been marked. This must be done once and only once. + + + + + Used internally to allow branching out of a finally block. + + + + + Creates a new LongJumpException instance. + + The route ID. + + + + Gets the route ID. + + + + + Represents information useful for optimizing a method. + + + + + Called by the parser whenever a variable is encountered (variable being any identifier + which is not a property name). + + The variable name. + + + + Determines if the parser encountered the given variable name while parsing the + function, or if the function contains a reference to "eval" or the function contains + nested functions which may reference the variable. + + The variable name. + true if the parser encountered the given variable name or "eval" while + parsing the function; false otherwise. + + + + Gets a value that indicates whether the function being generated contains a reference + to the arguments object. + + + + + Gets a value that indicates whether the function being generated contains an eval + statement. + + + + + Caches the HasEval and HasArguments property access. + + + + + Gets or sets a value that indicates whether the function being generated contains a + nested function declaration or expression. + + + + + Gets or sets a value that indicates whether the function being generated contains a + reference to the "this" keyword. + + + + + Represents information about one or more code generation optimizations. + + + + + Creates a new OptimizationInfo instance. + + + + + Gets or sets the root of the abstract syntax tree that is being compiled. + + + + + Gets or sets a value that indicates whether strict mode is enabled. + + + + + Gets or sets the source of javascript code. + + + + + Gets or sets the name of the function that is being generated. + + + + + Gets the portion of source code associated with the statement that code is + being generated for. + + + + + Emits a sequence point, and sets the SourceSpan property. + + The IL generator used to emit the sequence point. + The source code span. + + + + Gets a list of generated methods that correspond to nested functions. + This list is maintained so that the garbage collector does not prematurely collect + the generated code for the nested functions. + + + + + Gets or sets function optimization information. + + + + + Gets a value that indicates whether the declarative scopes should be optimized away, + so that the scope is not even created at runtime. + + + + + Indicates that the given expression can choose to not generate a return value. + + + + + Indicates whether the return value was generated. + + + + + Gets or sets the local variable to store the result of the eval() call. Will be + null if code is being generated outside an eval context. + + + + + Retrieves a variable that can be used to store a property name referencing a + global variable. + + The IL generator used to create the variable. + The name of the global variable. + A variable. + + + + Retrieves a variable that can be used to store a property name referencing an + object property. + + The IL generator used to create the variable. + The name of the property. + A variable. + + + + Retrieves a variable that can be used to store a shared instance of a regular + expression. + + The IL generator used to create the variable. + The regular expression literal. + A varaible that can be used to store a shared instance of a regular + expression. + + + + Gets or sets the label the return statement should jump to (with the return value on + top of the stack). Will be null if code is being generated outside a function + context. + + + + + Gets or sets the variable that holds the return value for the function. Will be + null if code is being generated outside a function context or if no return + statements have been encountered. + + + + + Indicates whether we are generating code inside a loop. + + + + + Pushes information about break or continue targets to a stack. + + The label names associated with the break or continue target. + Can be null. + The IL label to jump to if a break statement is encountered. + The IL label to jump to if a continue statement is + encountered. Can be null. + true if break or continue statements without a label + should ignore this entry; false otherwise. + + + + Removes the top-most break or continue information from the stack. + + + + + Returns the break target for the statement with the given label, if one is provided, or + the top-most break target otherwise. + + The label associated with the break target. Can be + null. + The break target for the statement with the given label. + + + + Returns the continue target for the statement with the given label, if one is provided, or + the top-most continue target otherwise. + + The label associated with the continue target. Can be + null. + The continue target for the statement with the given label. + + + + Gets the number of available break or continue targets. Used to support break or + continue statements within finally blocks. + + + + + Searches for the given label in the break/continue stack. + + + The depth of the label in the stack. Zero indicates the bottom of the stack. + -1 is returned if the label was not found. + + + + Gets or sets a value that indicates whether code generation is occurring within a + try, catch or finally block. + + + + + Gets or sets a delegate that is called when EmitLongJump() is called and the target + label is outside the LongJumpStackSizeThreshold. + + + + + Gets or sets the depth of the break/continue stack at the start of the finally + statement. + + + + + Emits code to branch between statements, even if code generation is within a finally + block (where unconditional branches are not allowed). + + The generator to output the CIL to. + The label to jump to. + + + + Represents a javascript primitive type. + + + + + Methods related to the PrimitiveType enum. + + + + + Converts a javascript primitive type to a .NET type. + + The type to convert. + A .NET type. + + + + Converts a .NET type to a javascript primitive type. + + The type to convert. + A javascript primitive type. + + + + Checks if the given primitive type is numeric. + + The primitive type to check. + true if the given primitive type is numeric; false otherwise. + + + + Checks if the given primitive type is a string type. + + The primitive type to check. + true if the given primitive type is a string type; false + otherwise. + + + + Checks if the given primitive type is a value type. + + The primitive type to check. + true if the given primitive type is a value type; false otherwise. + + + + Gets a type that can hold values of both the given types. + + The first of the two types to find the LCD for. + The second of the two types to find the LCD for. + A type that can hold values of both the given types. + + + + Used by the code generator. + Not intended for user code (the class needs to be public because when using Reflection + Emit, all calls into Jurassic.dll are cross-assembly and thus must be public). + + + + + Initializes static members of this class. + + + + + Creates a new instance of a user-defined function. + + The next object in the prototype chain. + The name of the function. + The names of the arguments. + The scope at the point the function is declared. + The source code for the function body. + A delegate which represents the body of the function plus any dependencies. + true if the function body is strict mode; false otherwise. + A reference to the containing class prototype or object literal (or null). + This is used by functions declared in JavaScript code (including getters and setters). + + + + Sets the value of a object literal property to a value. + + The object to set the property on. + The property key (can be a string or a symbol). + The value to set. + + + + Sets the value of a object literal property to a getter. If the value already has a + setter then it will be retained. + + The object to set the property on. + The property key (can be a string or a symbol). + The getter function. + + + + Sets the value of a object literal property to a setter. If the value already has a + getter then it will be retained. + + The object to set the property on. + The property key (can be a string or a symbol). + The setter function. + + + + Retrieves a cached template string array, using the given call site ID as the cache key. + + The associated script engine. + The call site ID to use as a cache key. + + + + + Creates an array suitable for passing to a tag function. + + The associated script engine. + The call site ID to use as a cache key. + An array of strings that make up the template literal, + with escape character processing. + An array of strings that make up the template literal, + without any escape character processing. + A JS array suitable for passing to a tag function. + + + + + + + + + + + + + + Sets the value of a class property to a value. + + The object to set the property on. + The property key (can be a string or a symbol). + The value to set. + + + + Sets the value of a class property to a getter. If the value already has a + setter then it will be retained. + + The object to set the property on. + The property key (can be a string or a symbol). + The getter function. + + + + Sets the value of a class property to a setter. If the value already has a + getter then it will be retained. + + The object to set the property on. + The property key (can be a string or a symbol). + The setter function. + + + + Implements the 'instanceof' operator. + + The left-hand side value. + The right-hand side value. + The line number in the source file the error occurred on. + The path or URL of the source file. Can be null. + The name of the function. Can be null. + The result of the 'instanceof' operator. + + + + Gets an enumerable list of all the MemberInfos that are statically known to be used by this DLL. + + An enumerable list of all the MemberInfos that are used by this DLL. + + + + Gets the FieldInfo for a field. Throws an exception if the search fails. + + The type to search. + The name of the field. + The FieldInfo for a field. + + + + Gets the ConstructorInfo for a constructor. Throws an exception if the search fails. + + The type to search. + The types of the parameters accepted by the constructor. + The ConstructorInfo for the constructor. + + + + Gets the MethodInfo for an instance method. Throws an exception if the search fails. + + The type to search. + The name of the method to search for. + The types of the parameters accepted by the method. + The MethodInfo for the method. + + + + Gets the MethodInfo for a static method. Throws an exception if the search fails. + + The type to search. + The name of the method to search for. + The types of the parameters accepted by the method. + The MethodInfo for the method. + + + + Gets the MethodInfo for a generic instance method. Throws an exception if the search fails. + + The type to search. + The name of the method to search for. + The MethodInfo for the method. + + + + Represents the runtime state needed to run JS code. + + + + + Creates an execution context for code running in an eval() scope. + + A script engine. + The scope that was active when eval() was called. + The value of the 'this' keyword. + A new execution context instance. + + + + Creates an execution context for code running as a result of a function call. + + A script engine. + The scope that was active when the function was declared + (NOT when it was called). + The value of the 'this' keyword. + The function that is being called. + A new execution context instance. + + + + Creates an execution context for code running as a result of the new operator. + + A script engine. + The scope that was active when the class was declared. + The value of the 'this' keyword. + A reference to the function that is being executed. + The target of the new operator. + A reference to the object literal or class prototype + the executing function was defined within. Used by the 'super' keyword. + A new execution context instance. + + + + Creates an execution context for code running as a result of the new operator. The + 'this' value is unavailable. + + A script engine. + The scope that was active when the class was declared. + A reference to the function that is being executed. + The target of the new operator. + A reference to the object literal or class prototype + the executing function was defined within. Used by the 'super' keyword. + A new execution context instance. + + + + A reference to the script engine. + + + + + The scope that was active when this execution context was declared. Can be null. + + + + + Represents the state of the 'this' value. + + + + + A 'this' value is available, although it may be null or undefined. + + + + + 'this' is unavailable because execution is in a derived class constructor and + super() has not yet been called. + + + + + This is an ArrowFunction and does not have a local this value. + + + + + Indicates the status of the 'this' value. + + + + + The value of the 'this' keyword. + + + + + Converts to an object. If this is null or undefined, + then it will be set to the global object. + + + + + The value of the 'super' keyword, or null if it is not available. + + + + + Corresponds to a super(...argumentValues) call. + + The parameter values to pass to the base class. + The initialised object instance. + + + + A reference to the executing function. Will be null if running in a global or + eval context. + + + + + If this context was created by the 'new' operator, contains the target of the new + operator. This value can be accessed by JS using the 'new.target' expression. + + + + + Contains a reference to the object literal or class prototype the executing function + was defined within. Used by the 'super' keyword. + + + + + The same as except that it returns + instead of null if no new.target value is available. + + + + + Creates a new instance of the 'arguments' object. + + The top-level scope for the function. + The argument values that were passed to the function. + A new instance of the 'arguments' object. + + + + Creates a new RuntimeScope instance, which is used for passing captured variables + between methods. + + The parent scope, or null to use the ParentScope from this + execution context. + + + + + A new RuntimeScope instance. + + + + A place for storing captured variable values at runtime. + + So this JS code: + + function f() { + let a = 1; + { + let a = 2; + (function g() { + a = 3; + })(); + console.log(a); // Logs 3. + } + } + + Translates to something like this (in C#): + + object f(ExecutionContext executionContext, object[] arguments) + { + var scope1 = executionContext.CreateRuntimeScope(null); + var scope2 = executionContext.CreateRuntimeScope(scope1); + var g = ReflectionHelpers.CreateFunction(..., scope2, ...) + scope1.SetValue("a", 1); + scope2.SetValue("a", 2); + g.Call() + ((FunctionInstance)TypeConverter.ToObject(scope2.GetValue("console"))["log"]).Call(scope2.GetValue("a")); + } + + object g(ExecutionContext executionContext, object[] arguments) + { + executionContext.ParentScope.SetValue("a", 3); + } + + The with(...) statement is handled specially: + + function f() { + with (Math) { + console.log(E); // Logs 2.718281828459045. + } + } + + C# translation: + + object f(ExecutionContext executionContext, object[] arguments) + { + var scope1 = executionContext.CreateRuntimeScope(null); + var scope2 = executionContext.CreateRuntimeScope(scope1); + scope2.BindTo(scope1.GetValue("Math")); + ((FunctionInstance)TypeConverter.ToObject(scope2.GetValue("console"))["log"]).Call(scope2.GetValue("E")); + } + + + + + Creates a global scope. + + The associated script engine. + A new RuntimeScope instance. + + + + Creates a new RuntimeScope instance. + + The script engine this scope is associated with. + The parent scope, or null if this is the root scope. + + + + + + + + The current execution context. + + + + + A reference to the parent scope. If a variable cannot be found in this scope then the + parent scope can be checked instead. + + + + + Gets the type of scope, e.g. global, function, eval, with, etc. + + + + + Gets the object that stores the values of the variables in the scope, if any. Can be null. + + + + + Determines the 'this' value passed to a function when the function call is of the form + simple_func(). This is normally 'undefined' but can be some other value inside a with() + statement. + + + + + Binds the scope to a scope object. This is used by the 'with' statement. + + The object to use. + + + + Returns the value of the given variable. An error is thrown if the variable doesn't + exist. + + The name of the variable. + The line number in the source file the variable was accessed. + The path or URL of the source file. Can be null. + The value of the given variable. + + + + Returns the value of the given variable. Returns if the + variable doesn't exist. + + + The line number in the source file the variable was accessed. + The path or URL of the source file. Can be null. + The value of the given variable, or if the + variable doesn't exist. + + + + Returns the value of the given variable. Returns null if the variable doesn't + exist. + + The name of the variable. + The line number in the source file the variable was accessed. + The path or URL of the source file. Can be null. + The value of the given variable, or null if the variable doesn't exist + in the scope. + + + + Sets the value of the given variable. + + The name of the variable. + The new value of the variable. + The line number in the source file the variable was set. + The path or URL of the source file. Can be null. + + + + Sets the value of the given variable, using strict mode behaviour. + + The name of the variable. + The new value of the variable. + The line number in the source file the variable was set. + The path or URL of the source file. Can be null. + + + + Sets the value of the given variable. + + The name of the variable. + The new value of the variable. + Indicates whether to use strict mode behaviour when setting + the variable. + The line number in the source file the variable was set. + The path or URL of the source file. Can be null. + + + + Deletes the variable from the scope. + + The name of the variable. + + + + Represents an array literal expression. + + + + + Creates a new instance of ArrayLiteralExpression. + + A list of values in the array. + + + + Gets the literal value. + + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents an assignment expression (++, --, =, +=, -=, *=, /=, %=, &=, |=, ^=, <<=, >>=, >>>=). + + + + + Creates a new instance of AssignmentExpression. + + The operator to base this expression on. + + + + Creates a simple variable assignment expression. + + The scope the variable is defined within. + The name of the variable to set. + The value to set the variable to. + + + + Gets the target of the assignment. + + + + + Gets the underlying base operator for the given compound operator. + + The type of compound operator. + The underlying base operator, or null if the type is not a compound + operator. + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates CIL for an assignment expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + The target to modify. + + + + Generates CIL for an increment or decrement expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + The target to modify. + true if this is the postfix version of the operator; + false otherwise. + true if this is the increment operator; false if + this is the decrement operator. + + + + Generates CIL for a compound assignment expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + The target to modify. + + + + This is a private class that supports generating code for compound operators (e.g. +=). + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for a compound assignment expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + The target to modify. + + + + Checks the expression is valid and throws a SyntaxErrorException if not. + Called after the expression tree is fully built out. + + Indicates where the code is located e.g. inside a function, or a constructor, etc. + The line number to use when throwing an exception. + The source path to use when throwing an exception. + + + + Represents a binary operator expression. + + + + + Creates a new instance of BinaryExpression. + + The binary operator to base this expression on. + + + + Creates a new instance of BinaryJSExpression. + + The binary operator to base this expression on. + The operand on the left side of the operator. + The operand on the right side of the operator. + + + + Gets the expression on the left side of the operator. + + + + + Gets the expression on the right side of the operator. + + + + + Evaluates the expression, if possible. + + The result of evaluating the expression, or null if the expression can + not be evaluated. + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates CIL for the addition operation. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates CIL for the relational operators. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates CIL for the logical operators. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates CIL for the instanceof operator. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates CIL for the in operator. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Represents a class expression. + + + + + Creates a new class expression. + + The scope that contains the class. + The class name. + The base class, or null if this class doesn't inherit + from another class. + The constructor, or null if the class doesn't have one. + A list of class members. + + + + The scope that contains the class. + + + + + The class name, or null if none were specified. + + + + + The base class, or null if this class doesn't inherit from another class. + + + + + The constructor, or null if the class doesn't have one. + + + + + Gets the list of class members, exluding the constructor. + + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents the base class of all javascript expressions. + + + + + Evaluates the expression, if possible. + + The result of evaluating the expression, or null if the expression can + not be evaluated. + + + + Gets the type that results from evaluating this expression. + + + + + Checks the expression is valid and throws a SyntaxErrorException if not. + Called after the expression tree is fully built out. + + Indicates where the code is located e.g. inside a function, or a constructor, etc. + The line number to use when throwing an exception. + The source path to use when throwing an exception. + + + + Represents a function call expression. + + + + + Creates a new instance of FunctionCallExpression. + + The binary operator to base this expression on. + The scope that was in effect at the time of the function call + (used by eval() calls). + + + + Gets an expression that evaluates to the function instance. + + + + + Gets the type that results from evaluating this expression. + + + + + The scope that was in effect at the time of the function call (used by eval() calls.) + + + + + Used to implement function calls without evaluating the left operand twice. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates an array containing the argument values. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates an array containing the argument values for a tagged template literal. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + The template literal expression containing the parameter + values. + + + + Generates CIL for a call to eval(). + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Checks the expression is valid and throws a SyntaxErrorException if not. + Called after the expression tree is fully built out. + + Indicates where the code is located e.g. inside a function, or a constructor, etc. + The line number to use when throwing an exception. + The source path to use when throwing an exception. + + + + Represents a function expression. + + + + + Creates a new instance of FunctionExpression. + + The function context to base this expression on. + The scope that was in effect where the function was declared. + + + + Indicates how the function was declared. + + + + + Gets the name of the function. Can be null. + + + + + Gets a list of argument names and default values. + + + + + Gets the source code for the body of the function. + + + + + Gets the type that results from evaluating this expression. + + + + + The scope that was in effect where the function was declared. + + + + + A variable that contains the declaring object. + 1. In an object literal, the object literal instance. + 2. In a class instance method, the class prototype. + 3. In a class static method, the class itself. + Used when generating code. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents a grouping expression. + + + + + Creates a new instance of GroupingJSExpression. + + The operator to base this expression on. + + + + Gets the expression inside the grouping operator. + + + + + Evaluates the expression, if possible. + + The result of evaluating the expression, or null if the expression can + not be evaluated. + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Represents a reference - an expression that is valid on the left-hand-side of an assignment + operation. + + + + + Gets the static type of the reference. + + + + + Outputs the values needed to get or set this reference. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Duplicates the values needed to get or set this reference. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Pushes the value of the reference onto the stack. GenerateReference should be called first. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + true to throw a ReferenceError exception if + the name is unresolvable; false to output null instead. + + + + Stores the value on the top of the stack in the reference. GenerateReference should be called first. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + The primitive type of the value that is on the top of the stack. + + + + Deletes the reference and pushes true if the delete succeeded, or false + if the delete failed. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Represents a comma-delimited list. + + + + + Creates a new instance of ListExpression. + + The operator to base this expression on. + + + + Gets an array of expressions, one for each item in the list. + + + + + Evaluates the expression, if possible. + + The result of evaluating the expression, or null if the expression can + not be evaluated. + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents a simple literal expression (not an array literal or object literal). + + + + + Creates a new instance of LiteralExpression. + + The literal value. + + + + Gets the literal value. + + + + + Evaluates the expression, if possible. + + The result of evaluating the expression, or null if the expression can + not be evaluated. + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents a variable or member access. + + + + + Creates a new instance of MemberAccessExpression. + + The operator to base this expression on. + + + + Gets an expression that evaluates to the object that is being accessed or modified. + + + + + Gets the type that results from evaluating this expression. + + + + + Gets the static type of the reference. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Static property access e.g. a.b or a['b'] + + + + + Numeric array indexer e.g. a[1] + + + + + Dynamic property access e.g. a[someVariable] + + + + + Determines the type of member access. + + Information about any optimizations that should be performed. + Outputs the name of the property that is being accessed, if + it is available at compile time, or null otherwise. + + + + + Outputs the values needed to get or set this reference. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Outputs the values needed to get or set this reference. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Pushes the value of the reference onto the stack. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + true to throw a ReferenceError exception if + the name is unresolvable; false to output null instead. + + + + Stores the value on the top of the stack in the reference. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + The primitive type of the value that is on the top of the stack. + + + + Deletes the reference and pushes true if the delete succeeded, or false + if the delete failed. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Checks the expression is valid and throws a SyntaxErrorException if not. + Called after the expression tree is fully built out. + + Indicates where the code is located e.g. inside a function, or a constructor, etc. + The line number to use when throwing an exception. + The source path to use when throwing an exception. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents a variable or part of a member reference. + + + + + Creates a new NameExpression instance. + + The current scope. + The name of the variable or member that is being referenced. + + + + Gets or sets the scope the name is contained within. + + + + + Gets the name of the variable or member. + + + + + Gets the type that results from evaluating this expression. + + + + + Gets the static type of the reference. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Outputs the values needed to get or set this reference. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Outputs the values needed to get or set this reference. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Pushes the value of the reference onto the stack. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + true to throw a ReferenceError exception if + the name is unresolvable; false to output null instead. + + + + Stores the value on the top of the stack in the reference. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + The primitive type of the value that is on the top of the stack. + + + + Deletes the reference and pushes true if the delete succeeded, or false + if the delete failed. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Calculates the hash code for this object. + + The hash code for this object. + + + + Determines if the given object is equal to this one. + + The object to compare. + true if the given object is equal to this one; false otherwise. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents a "new" expression. + + + + + Creates a new instance of NewExpression. + + The operator to base this expression on. + + + + Gets the precedence of the operator. + + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Represents a reference to the "new.target" value. + + + + + Creates a new NewTargetExpression instance. + + + + + Gets the type that results from evaluating this expression. + + + + + Gets the static type of the reference. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents an object literal expression. + + + + + Creates a new object literal expression. + + A list of property declarations. + + + + Gets the literal value. + + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents a mutable operator expression. Once all the operands are determined, the + expression is converted into a real operator expression. + + + + + Creates a new instance of OperatorExpression. + + The operator to base this expression on. + + + + Creates a derived instance of OperatorExpression from the given operator. + + The operator to base this expression on. + The scope that was in effect at the time of the function call + (used by eval() calls). + A derived OperatorExpression instance. + + + + Gets or sets the operator this expression refers to. + + + + + Gets or sets the type of operator this expression refers to. + + + + + Gets the operand with the given index. No parameter validation and grouping operator + elimination is performed. + + The index of the operand to retrieve. + The operand with the given index. + + + + Gets the operand with the given index. + + The index of the operand to retrieve. + The operand with the given index. + + + + Gets the number of operands that have been added. + + + + + Adds an operand. + + The expression representing the operand to add. + + + + Removes and returns the most recently added operand. + + The most recently added operand. + + + + Gets or sets a value that indicates whether the second token in a ternary operator + was encountered. + + + + + Gets a value that indicates whether a new operand is acceptable given the state of + this operator. For ternary operators only two operands are acceptable until the + second token of the sequence is encountered. + + + + + Gets the right-most operand as an unbound operator, or null if the operator + has no operands or the right-most operand is not an operator. + + + + + Gets the precedence of the operator. For ternary operators this is -MinValue if + parsing is currently between the two tokens. + + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Checks the expression is valid and throws a SyntaxErrorException if not. + Called after the expression tree is fully built out. + + Indicates where the code is located e.g. inside a function, or a constructor, etc. + The line number to use when throwing an exception. + The source path to use when throwing an exception. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents a 'super' reference. + + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Indicates whether this 'super' keyword is in a valid context. + + + + + Checks the expression is valid and throws a SyntaxErrorException if not. + Called after the expression tree is fully built out. + + Indicates where the code is located e.g. inside a function, or a constructor, etc. + The line number to use when throwing an exception. + The source path to use when throwing an exception. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents a template literal expression, with substitutions. + Code gen treats template literals with no substitutions just like string literals. + + + + + Creates a new instance of TemplateLiteralExpression. + + The literal string parts of the template. For example `1${2}3` + has the string literal parts "1" and "3". + The substitution expressions in the template. For example + `1${2}3` has the substitution expression "2". + The literal string parts of the template, prior to performing + escape sequence processing. + + + + The literal string parts of the template. For example `1${2}3` has the string literal + parts "1" and "3". + + + + + The substitution expressions in the template. For example `1${2}3` has the + substitution expression "2". + + + + + The literal string parts of the template, prior to performing escape sequence + processing. + + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Represents a ternary operator expression. + + + + + Creates a new instance of TernaryExpression. + + The ternary operator to base this expression on. + + + + Evaluates the expression, if possible. + + The result of evaluating the expression, or null if the expression can + not be evaluated. + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Represents a reference to the "this" value. + + + + + Creates a new ThisExpression instance. + + + + + Gets the type that results from evaluating this expression. + + + + + Gets the static type of the reference. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the expression to a string. + + A string representing this expression. + + + + Represents a unary operator expression. + + + + + Creates a new instance of UnaryExpression. + + The unary operator to base this expression on. + + + + Gets the expression on the left or right side of the unary operator. + + + + + Evaluates the expression, if possible. + + The result of evaluating the expression, or null if the expression can + not be evaluated. + + + + Gets the type that results from evaluating this expression. + + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates CIL for the typeof expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates CIL for the delete expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Represents punctuation or an operator in the source code. + + + + + Creates a new IdentifierToken instance. + + The identifier name. + + + + Gets the name of the identifier. + + + + + Gets a string that represents the token in a parseable form. + + + + + Creates a new identifier token. + + The name of the identifer. + A new IdentifierToken instance. + + + + Represents a reserved word in the source code. + + + + + Creates a new KeywordToken instance. + + The keyword name. + + + + Gets the name of the identifier. + + + + + Creates a token from the given string. + + The text. + The script engine compatibility mode. + true if the lexer is operating in strict mode; + false otherwise. + The token corresponding to the given string, or null if the string + does not represent a valid token. + + + + Initializes a lookup table by combining the base list with a second list of keywords. + + A list of additional keywords. + A lookup table. + + + + Gets a string that represents the token in a parseable form. + + + + + Represents the current expression state of the parser. + + + + + Indicates the context is not known. The lexer will guess. + + + + + Indicates the next token can be a literal. + + + + + Indicates the next token can be an operator. + + + + + Indicates the next token is the continuation of a template literal. + + + + + Converts a JavaScript source file into a series of tokens. + + + + + Creates a Lexer instance with the given source of text. + + The source of javascript code. + + + + Cleans up any resources used by the lexer. + + + + + Gets the reader that was supplied to the constructor. + + + + + Gets the line number of the next token. + + + + + Gets the column number of the start of the next token. + + + + + Gets or sets a callback that interrogates the parser to determine whether a literal or + an operator is valid as the next token. This is only required to disambiguate the + slash symbol (/) which can be a division operator or a regular expression literal. + + + + + Gets or sets a value that indicates whether the lexer should operate in strict mode. + + + + + Gets or sets a value that indicates what compatibility mode to use. + + + + + Gets or sets a string builder that will be appended with characters as they are read + from the input stream. + + + + + Reads the next character from the input stream. + + The character that was read, or -1 if the end of the input stream has + been reached. + + + + Reads the next token from the reader. + + A token, or null if there are no more tokens. + + + + Reads an identifier token. + + The first character of the identifier. + An identifier token, literal token or a keyword token. + + + + Reads a punctuation token. + + The first character of the punctuation token. + A punctuation token. + + + + Creates a TextReader that calls ReadNextChar(). + + + + + Reads a numeric literal token. + + The first character of the token. + A numeric literal token. + + + + Reads an integer value. + + The initial value, derived from the first character. + The number of digits that were read from the stream. + The numeric value, or double.NaN if no number was present. + + + + Reads a string literal. + + The first character of the string literal. + A string literal. + + + + Reads a hexidecimal number with the given number of digits and turns it into a character. + + The character corresponding to the escape sequence, or the content that was read + from the input if a valid hex number was not read. + + + + Reads an octal number turns it into a single-byte character. + + The first character delimiting the string literal. + The value of the first digit. + The character corresponding to the escape sequence. + + + + Reads an extended unicode escape sequence in the form "\u{20BB7}". + + The character or characters corresponding to the escape sequence. + + + + Reads past a single line comment. + + Always returns null. + + + + Reads past a multi-line comment. + + A line terminator token if the multi-line comment contains a newline character; + otherwise returns null. + + + + Reads past whitespace. + + Always returns null. + + + + Reads a line terminator (a newline). + + The first character of the line terminator. + A newline token. + + + + Reads a divide operator ('/' or '/='), a comment ('//' or '/*'), or a regular expression + literal. + + A punctuator token or a regular expression token. + + + + Reads a regular expression literal. + + A regular expression token. + + + + Determines if the given character is whitespace. + + The character to test. + true if the character is whitespace; false otherwise. + + + + Determines if the given character is a line terminator. + + The character to test. + true if the character is a line terminator; false otherwise. + + + + Determines if the given character is valid as the first character of an identifier. + + The character to test. + true if the character is is valid as the first character of an identifier; + false otherwise. + + + + Determines if the given character is valid as a character of an identifier. + + The character to test. + true if the character is is valid as a character of an identifier; + false otherwise. + + + + Determines if the given character is valid as the first character of a punctuator. + + The character to test. + true if the character is is valid as the first character of an punctuator; + false otherwise. + + + + Determines if the given character is valid as the first character of a numeric literal. + + The character to test. + true if the character is is valid as the first character of a numeric + literal; false otherwise. + + + + Determines if the given character is valid as the first character of a string literal. + + The character to test. + true if the character is is valid as the first character of a string + literal; false otherwise. + + + + Determines if the given character is valid in a hexidecimal number. + + The character to test. + true if the given character is valid in a hexidecimal number; false + otherwise. + + + + Represents a string, number, boolean or null literal in the source code. + + + + + Creates a new LiteralToken instance with the given value. + + + + + + The value of the literal. + + + + + Gets a value that indicates whether the literal is a keyword. Literal keywords are + false, true and null. + + + + + Gets a string that represents the token in a parseable form. + + + + + Converts this token into a property name. + + + + + + Represents punctuation or an operator in the source code. + + + + + Creates a new PunctuatorToken instance. + + The punctuator text. + + + + Creates a punctuator token from the given string. + + The punctuator text. + The punctuator corresponding to the given string, or null if the string + does not represent a valid punctuator. + + + + Gets a string that represents the token in a parseable form. + + + + + Represents a lightweight representation of a regular expression literal. + + + + + Creates a new regular expression literal. + + The unescaped regular expression pattern. + The regular expression flags. + + + + Gets the regular expression pattern. + + + + + Gets a string that contains the flags. + + + + + Determines whether the specified Object is equal to the current Object. + + The Object to compare with the current Object. + true if the specified Object is equal to the current Object; + otherwise, false. + + + + Serves as a hash function for a particular type. + + A hash code for the current Object. + + + + Returns a String that represents the current Object. + + A String that represents the current Object. + + + + Represents a string literal. + + + + + Gets the number of character escape sequences encounted while parsing the string + literal. + + + + + Gets the number of line continuations encounted while parsing the string literal. + + + + + Gets the contents of the string literal. + + + + + Represents the text content of a template literal. + + Example 1: `plain text` + 1. TemplateLiteralToken (Value = "plain text") + + Example 2: `${count}` + 1. TemplateLiteralToken (Value = "") + 2. IdentifierToken (Name = "count") + 3. PunctuatorToken (Text = "}") + 4. TemplateLiteralToken (Value = "") + + Example 3: `Bought ${count} items from ${person}!` + 1. TemplateLiteralToken (Value = "Bought ") + 2. IdentifierToken (Name = "count") + 3. PunctuatorToken (Text = "}") + 4. TemplateLiteralToken (Value = " items from ") + 5. IdentifierToken (Name = "person") + 6. PunctuatorToken (Text = "}") + 7. TemplateLiteralToken (Value = "!") + + + + + Creates a new TemplateLiteralToken instance. + + The literal text. + The contents of the template literal, without any escaping. + Indicates whether a substitution follows this + string. + + + + Indicates whether a substitution follows this string. For example, this is true for + the "hello" in `hello${1}world`, but not the "world". + + + + + The raw text, prior to performing any escape sequence processing. + + + + + Gets the contents of the template string literal. + + + + + Represents the base class of all tokens. + + + + + Gets a string that represents the token in a parseable form. + + + + + Converts the token to the string suitable for embedding in an error message. + + The token to convert. Can be null. + A string suitable for embedding in an error message. + + + + Converts the token to a string representation. + + A textual representation of the object. + + + + Represents whitespace or a line terminator. + + + + + Creates a new WhiteSpaceToken instance. + + The number of line terminators encountered while + reading the whitespace. + + + + Gets a count of the number of line terminators. + + + + + Gets a string that represents the token in a parseable form. + + + + + Represents a context that code can be run in. + + + + + The default context. + + + + + The context inside function bodies. + + + + + The context inside the eval() function. + + + + + Represents a set of options that influence the compiler. + + + + + Creates a new CompilerOptions instance. + + + + + Gets or sets a value that indicates whether to force ES5 strict mode, even if the code + does not contain a strict mode directive ("use strict"). The default is false. + + + + + Gets or sets a value that indicates what compatibility mode to use. + + + + + Gets or sets a value that indicates whether to disassemble any generated IL and store it + in the associated function. + + + + + Performs a shallow clone of this instance. + + A shallow clone of this instance. + + + + Represents how the function was defined. + + + + + The function was declared as a statement. + + + + + The function was declared as an expression. + + + + + Represents the declaration of a function parameter. + + + + + The name of the parameter. + + + + + The value of the parameter, if no value was passed to the function (can be null). + + + + + Returns the textual representation of this object. + + + + + + Represents the information needed to compile a function. + + + + + Creates a new FunctionMethodGenerator instance. + + The name of the function (can be computed at runtime). + Indicates how the function was declared. + The names and default values of the arguments. + The source code of the function. + The root of the abstract syntax tree for the body of the function. + The scope that contains the function name and arguments. + The URL or file system path that the script was sourced from. + The extent of the function in the source code. + Options that influence the compiler. + + + + Dummy implementation of ScriptSource. + + + + + Creates a new FunctionContext instance. + + The name of the function. + A comma-separated list of arguments. + The source code for the body of the function. + Options that influence the compiler. + + + + An expression that evaluates to the name of the function. For getters and setters, + this does not include the "get" or "set". + + + + + Indicates how the function was declared. + + + + + Gets a comma-separated list of arguments. + + + + + Gets a list of argument names and default values. + + + + + Gets the root of the abstract syntax tree for the body of the function. + + + + + Gets the source code for the body of the function. + + + + + Gets a name for the generated method. + + A name for the generated method. + + + + Gets a name for the function, as it appears in the stack trace. + + A name for the function, as it appears in the stack trace, or null if + this generator is generating code in the global scope. + + + + Gets an array of types - one for each parameter accepted by the method generated by + this context. + + An array of parameter types. + + + + Gets an array of names - one for each parameter accepted by the method being generated. + + An array of parameter names. + + + + Checks whether the function is valid (in strict mode the function cannot be named + 'arguments' or 'eval' and the argument names cannot be duplicated). + + The line number in the source file. + The path or URL of the source file. Can be null. + + + + Parses the source text into an abstract syntax tree. + + The root node of the abstract syntax tree. + + + + Represents a delegate that is used for user-defined functions. For internal use only. + + The script engine, this value and other state needed to run the + function. + The arguments that were passed to the function. + The result of calling the method. + + + + Retrieves a delegate for the generated method. + + The delegate type that matches the method parameters. + + + + Generates IL for the script. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts this object to a string. + + A string representing this object. + + + + Represents a generated method and it's dependencies. + + + + + Creates a new GeneratedMethod instance. + + A delegate that refers to the generated method. + A list of dependent generated methods. Can be null. + + + + Gets a delegate which refers to the generated method. + + + + + Gets a list of dependent generated methods. + + + + + Gets or sets the disassembled IL code for the method. + + + + + Retrieves the code for a generated method, given the ID. For internal use only. + + The ID of the generated method. + A GeneratedMethodInfo instance. + + + + Saves the given generated method and returns an ID. For internal use only. + + The generated method to save. + The ID that was associated with the generated method. + + + + Represents the information needed to compile global or eval script into a method. + + + + + Creates a new EvalMethodGenerator instance. + + The script code to execute. + Options that influence the compiler. + + + + + + + + + + Gets a name for the generated method. + + A name for the generated method. + + + + Represents a delegate that is used for global code. For internal use only. + + The script engine, scope and 'this' value. + The result of calling the method. + + + + Retrieves a delegate for the generated method. + + The delegate type that matches the method parameters. + + + + Parses the source text into an abstract syntax tree. + + + + + Generates IL for the script. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Executes the script. + + The script engine to use to execute the script. + The scope of the calling code. + The value of the "this" keyword in the calling code. + The result of evaluating the script. + + + + Represents the unit of compilation. + + + + + Creates a new MethodGenerator instance. + + The source of javascript code. + Options that influence the compiler. + + + + Gets a reference to any compiler options. + + + + + Gets the source of javascript code. + + + + + Gets a value that indicates whether strict mode is enabled. + + + + + Gets the root node of the abstract syntax tree. This will be null until Parse() + is called. + + + + + Gets the top-level scope. This will be null until Parse() is called. + + + + + Gets or sets optimization information. + + + + + Gets the generated IL. This will be null until GenerateCode() is + called. + + + + + Gets a delegate to the emitted dynamic method, plus any dependencies. This will be + null until GenerateCode() is called. + + + + + Gets a name for the generated method. + + A name for the generated method. + + + + Gets a name for the function, as it appears in the stack trace. + + A name for the function, as it appears in the stack trace, or null if + this generator is generating code in the global scope. + + + + Gets an array of types - one for each parameter accepted by the method generated by + this context. + + An array of parameter types. + + + + Gets an array of names - one for each parameter accepted by the method being generated. + + An array of parameter names. + + + + Retrieves a delegate for the generated method. + + The delegate type that matches the method parameters. + + + + Parses the source text into an abstract syntax tree. + + + + + Optimizes the abstract syntax tree. + + + + + Generates IL for the script. + + + + + Generates IL for the script. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Represents the base class of expressions and statements. + + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Determines if this node or any of this node's children are of the given type. + + The type of AstNode to search for. + true if this node or any of this node's children are of the given + type; false otherwise. + + + + Generates CIL for the expression. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Indicates that multiple operators of this type are grouped left-to-right. + + + + + Indicates that multiple operators of this type are grouped right-to-left. + + + + + Indicates that a value is consumed to the left of the primary token. + + + + + Indicates that a value is consumed to the right of the primary token. + + + + + Indicates that values to the left and right of the primary token are consumed. + + + + + Indicates that a value is consumed to the right of the secondary token. + + + + + Indicates that three values are consumed. + + + + + Indicates the inner operand is optional. Only used with the function call operator. + + + + + Represents the type of operator. + + + + + Represents a JavaScript operator. + + + + + Creates a new operator instance. + + The token that corresponds to this operator. If the operator consists + of multiple tokens (e.g. ?:) then this is the first token in the sequence. + An integer that indicates the order of evaluation. Higher + precedence operators are evaluated first. + A value that indicates where operands are allowed. + Gets a value that indicates whether multiple operators of this + type are grouped left-to-right or right-to-left. + The type of operator: this decides what algorithm to use to calculate the result. + The second token in the sequence. + The precedence for the secondary or tertiary operand. + + + + Gets the type of operator: this decides what algorithm to use to calculate the result. + + + + + Gets the token that corresponds to this operator. If the operator consists of multiple + tokens (e.g. ?:) then this is the first token in the sequence. + + + + + For a multi-token operator, gets the second token in the sequence. + + + + + Gets an integer that indicates the order of evaluation. Higher precedence operators are + evaluated first. + + + + + Gets an integer that indicates the order of evaluation for the secondary operand. + Higher precedence operators are evaluated first. + + + + + Gets an integer that indicates the order of evaluation for the tertiary operand. + Higher precedence operators are evaluated first. + + + + + Gets a value that indicates whether multiple operators of this type are grouped + left-to-right or right-to-left. + + + + + Gets a value that indicates whether a value is consumed to the left of the primary token. + + + + + Gets a value that indicates whether a value is consumed to the right of the primary token. + + + + + Gets a value that indicates whether a value is consumed to the right of the secondary token. + Must be false if there is no secondary token. + + + + + Gets a value that indicates the inner operand is optional. Only used with the function + call operator. + + + + + Gets the maximum number of operands required by this operator. + + + + + Determines if the given number of operands is valid for this operator. + + The number of operands. + true if the given number of operands is valid for this operator; + false otherwise. + + + + Gets an enumerable collection of every defined operator. + + + + + Converts a series of tokens into an abstract syntax tree. + + + + + Creates a Parser instance with the given lexer supplying the tokens. + + The lexical analyser that provides the tokens. + Options that influence the compiler. + The context of the code (global, function or eval). + Hints about whether optimization is possible. + + + + Creates a parser that can read the body of a function. + + The parser for the parent context. + The function scope. + Hints about whether optimization is possible. + Indicates the parsing context. + A new parser. + + + + Gets the line number of the next token. + + + + + Gets the position just after the last character of the previously consumed token. + + + + + Gets the position of the first character of the next token. + + + + + Gets the path or URL of the source file. Can be null. + + + + + Gets or sets a value that indicates whether the parser is operating in strict mode. + + + + + The top-level scope. + + + + + Gets optimization information about the code that was parsed (Parse() must be called + first). + + + + + Indicates whether we are parsing in a function context (including constructors and class functions). + + + + + Throws an exception if the variable name is invalid. + + The name of the variable to check. + + + + Discards the current token and reads the next one. + + Indicates whether the next token can be a literal or an + operator. + + + + Indicates that the next token is identical to the given one. Throws an exception if + this is not the case. Consumes the token. + + The expected token. + + + + Indicates that the next token should be an identifier. Throws an exception if this is + not the case. Consumes the token. + + The identifier name. + + + + Returns a value that indicates whether the current position is a valid position to end + a statement. + + true if the current position is a valid position to end a statement; + false otherwise. + + + + Indicates that the next token should end the current statement. This implies that the + next token is a semicolon, right brace or a line terminator. + + + + + Sets the initial scope. + + The initial scope + + + + Helper class to help manage scopes. + + + + + Sets the current scope and returns an object which can be disposed to restore the + previous scope. + + The new scope. + An object which can be disposed to restore the previous scope. + + + + Parses javascript source code. + + An expression that can be executed to run the program represented by the + source code. + + + + Parses any statement other than a function declaration. + + true if the statement is being added to an + existing block statement, false if the statement represents a new block. + An expression that represents the statement. + + + + Parses any statement other than a function declaration, without beginning a new + statement context. + + An expression that represents the statement. + + + + Parses a block of statements. + + A BlockStatement containing the statements. + The value of a block statement is the value of the last statement in the block, + or undefined if there are no statements in the block. + + + + Parses a var, let or const statement. + + Indicates which type of statement is being parsed. Must be var, + let or const. + Indicates whether the keyword token needs to be consumed. + Indicates whether we are parsing the initial declaration + inside a for() statement. + A variable declaration statement. + + + + Parses an empty statement. + + An empty statement. + + + + Parses an if statement. + + An expression representing the if statement. + + + + Parses a do statement. + + An expression representing the do statement. + + + + Parses a while statement. + + A while statement. + + + + When parsing a for statement, used to keep track of what type it is. + + + + + Parses a for statement, for-in statement, or a for-of statement. + + A for statement, for-in statement, or a for-of statement. + + + + Parses a continue statement. + + A continue statement. + + + + Parses a break statement. + + A break statement. + + + + Parses a return statement. + + A return statement. + + + + Parses a with statement. + + An expression representing the with statement. + + + + Parses a switch statement. + + A switch statement. + + + + Parses a throw statement. + + A throw statement. + + + + Parses a try statement. + + A try-catch-finally statement. + + + + Parses a debugger statement. + + A debugger statement. + + + + Parses a function declaration. + + A statement representing the function. + + + + Parses a function declaration or a function expression. + + The type of function to parse. + The parent scope for the function. + The name of the function (can be computed at runtime). + The position of the start of the function. + Indicates the parsing context. + A function expression. + + + + Parses a comma-separated list of function arguments. + + The token that ends parsing. + A list of parsed arguments. + + + + Parses a statement consisting of an expression or starting with a label. These two + cases are disambiguated here. + + A statement. + + + + Represents a key by which to look up an operator. + + + + + Gets or sets a mapping from token -> operator. There can be at most two operators per + token (the prefix version and the infix/postfix version). + + + + + Initializes the token -> operator mapping dictionary. + + The token -> operator mapping dictionary. + + + + Finds a operator given a token and an indication whether the prefix or infix/postfix + version is desired. + + The token to search for. + true if the infix/postfix version of the operator + is desired; false otherwise. + An Operator instance, or null if the operator could not be found. + + + + Parses a javascript expression. + + One or more tokens that indicate the end of the expression. + An expression tree that represents the expression. + + + + Parses an array literal (e.g. "[1, 2]"). + + A literal expression that represents the array literal. + + + + Parses an object literal (e.g. "{a: 5}"). + + A literal expression that represents the object literal. + + + + Reads a property name, as used in object literals and class bodies. + + + Details on the property name. + + + + Parses a function expression. + + A function expression. + + + + Parses a template literal (e.g. `Bought ${count} items`). + + An expression that represents the template literal. + + + + Parses a class declaration. + + A statement representing the class. + + + + Parses a class expression. + + A class expression. + + + + Parses the body of a class declaration or a class expression. + + The name of the class (can be empty). + The base class, or null if this class doesn't inherit + from another class. + The position of the start of the function. + A class expression. + + + + Represents a single property of an object literal or a member of a class body. + + + + + Creates a new PropertyDeclaration instance. + + The property name. + The property value. + + + + The member name. Can be static or computed e.g. ['fu' + 'nc']() { }. + + + + + The value of the member. + + + + + Represents the valid prefixes that can appear before a property name. + + + + + Represents the name of a property (member), which can be + + + + + Creates a property name instance with a statically-known name. + + The statically-known name. + + + + Creates a property name instance with a name that will be computed at runtime. + + The expression that will compute the name. + + + + Indicates the property was preceeded by 'get', making this property a getter. + + + + + Indicates the property was preceeded by 'set', making this property a setter. + + + + + Indicates the property was preceeded by 'static', making this a static function + (applies to classes, not object literals). + + + + + Indicates whether the name is statically known. + + + + + If HasStaticName is true, contains the name of the property. + + + + + If HasStaticName is false, contains an expression which computes the name of the + property. + + + + + Modifies this name to include the given flags. + + The flags to add. + A new property name instance with the existing flags and the provided flags. + + + + Represents an enclosing context where variables are uniquely defined. + + + + + Represents a variable declared in a scope. + + + + + + + + + + + + Creates a new declarative scope for use inside a function body (and within function + argument default values). + + The name of the function. Can be empty for an anonymous function. + The names of each of the function arguments. Can be null. + A new DeclarativeScope instance. + + + + + + + + + + + Creates a new object scope for use inside a with statement. + + A reference to the parent scope. Can not be null. + A new ObjectScope instance. + + + + Creates a new Scope instance. + + A reference to the parent scope, or null if this is + the global scope. + The number of variables declared in this scope. + + + + + + + + + Gets a reference to the parent scope. Can be null if this is the global scope. + + + + + Gets the number of variables declared in this scope. + + + + + After GenerateScopeCreation is called, gets a variable containing the RuntimeScope + instance. Can be null if this scope contains no variables. + + + + + Indicates whether + was called. + + + + + Gets an enumerable list of the declared variables, in no particular order. + + + + + Gets a reference to the variable with the given name, in this scope or any parent + scope. + + The name of the variable to find. + The variable details, or null if the variable doesn't exist in the + scope. + + + + Returns true if the given variable has been declared in this scope. + + The name of the variable. + true if the given variable has been declared in this scope; + false otherwise. + + + + Declares a variable or function in this scope. This will be initialized with the value + of the given expression. + + The keyword that was used to declare the variable (var, let or + const). + The name of the variable. + The function value to hoist to the top of the scope. + Should be null for everything except function declarations. + A reference to the variable that was declared. + + + + Generates code that creates a new scope. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates code that pushes a RuntimeScope instance to the top of the stack. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Generates code that initializes the variable and function declarations. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Represents different types of scopes. + + + + + The top-level global scope. + + + + + A scope associated with a 'with' statement. + + + + + The top-level scope in a function. + + + + + + + + + + The scope for a non-strict mode eval() function call. + + + + + The scope for a strict mode eval() function call. + + + + + Represents a javascript block statement. + + + + + Creates a new BlockStatement instance. + + The labels that are associated with this statement. + The lexical scope associated with this block statement. + + + + Gets a list of the statements in the block. + + + + + The lexical scope associated with this block statement. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a break statement. + + + + + Creates a new BreakStatement instance. + + The labels that are associated with this statement. + + + + Gets or sets the name of the label that identifies the block to break out of. Can be + null. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a continue statement. + + + + + Creates a new ContinueStatement instance. + + The labels that are associated with this statement. + + + + Gets or sets the name of the label that identifies the loop to continue. Can be + null. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents the debugger statement. + + + + + Creates a new DebuggerStatement instance. + + The labels that are associated with this statement. + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a javascript do-while statement. + + + + + Creates a new DoWhileStatement instance. + + The labels that are associated with this statement. + + + + Gets a value that indicates whether the condition should be checked at the end of the + loop. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents an empty statement. + + + + + Creates a new EmptyStatement instance. + + The labels that are associated with this statement. + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a javascript expression statement. + + + + + Creates a new ExpressionStatement instance. By default, this expression does not + contribute to the result of an eval(). + + The underlying expression. + + + + Creates a new ExpressionStatement instance. By default, this expression does + contribute to the result of an eval(). + + The labels that are associated with this statement. + The underlying expression. + + + + Gets or sets the underlying expression. + + + + + Gets or sets a value that indicates whether the result of this statement should be + returned from an eval() call. Does not have any effect if the context is not an + EvalContext. Defaults to false. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a javascript for-in statement. + + + + + Creates a new ForInStatement instance. + + The labels that are associated with this statement. + + + + The scope that encompasses the entire loop statement. + + + + + Gets or sets a reference to mutate on each iteration of the loop. + + + + + Gets or sets the portion of source code associated with the variable. + + + + + Gets or sets an expression that evaluates to the object to enumerate. + + + + + Gets or sets the portion of source code associated with the target object. + + + + + Gets or sets the loop body. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a javascript for-of statement. + + + + + Creates a new ForOfStatement instance. + + The labels that are associated with this statement. + + + + The scope that encompasses the entire loop statement. + + + + + Gets or sets a reference to mutate on each iteration of the loop. + + + + + Gets or sets the portion of source code associated with the variable. + + + + + Gets or sets an expression that evaluates to the object to enumerate. + + + + + Gets or sets the portion of source code associated with the target object. + + + + + Gets or sets the loop body. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a javascript for statement (for-in is a separate statement). + + + + + Creates a new ForStatement instance. + + The labels that are associated with this statement. + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents an if statement. + + + + + Creates a new IfStatement instance. + + The labels that are associated with this statement. + + + + Gets or sets the condition that determines which path the code should proceed. + + + + + Gets or sets the statement that is executed if the condition is true. + + + + + Gets or sets the statement that is executed if the condition is false. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a javascript loop statement (for, for-in, while and do-while). + + + + + Creates a new LoopStatement instance. + + The labels that are associated with this statement. + + + + The scope that encompasses the entire loop statement. Only needed if there is a + declaration statement in the loop header, which means it only applies to for + statements. + + + + + Gets or sets the statement that initializes the loop variable. + + + + + Gets the var statement that initializes the loop variable. + + + + + Gets the expression that initializes the loop variable. + + + + + Gets or sets the statement that checks whether the loop should terminate. + + + + + Gets the expression that checks whether the loop should terminate. + + + + + Gets or sets the statement that increments (or decrements) the loop variable. + + + + + Gets the expression that increments (or decrements) the loop variable. + + + + + Gets or sets the loop body. + + + + + Gets a value that indicates whether the condition should be checked at the end of the + loop. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Represents a return statement. + + + + + Creates a new ReturnStatement instance. + + The labels that are associated with this statement. + + + + Gets or sets the expression to return. Can be null to return "undefined". + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a javascript statement. + + + + + Creates a new Statement instance. + + The labels that are associated with this statement. + + + + Returns a value that indicates whether the statement has one or more labels attached to + it. + + + + + Gets or sets the labels associated with this statement. + + + + + Gets or sets the portion of source code associated with this statement. For + single-line statements this encompasses the whole statement but for multi-line (block) + statements it only encompasses part of the statement. + + + + + Locals needed by GenerateStartOfStatement() and GenerateEndOfStatement(). + + + + + Gets or sets a value that indicates whether the break statement will be handled + specially by the calling code - this means that GenerateStartOfStatement() and + GenerateEndOfStatement() do not have to generate code to handle the break + statement. + + + + + Gets or sets a value that indicates whether the debugging information will be + handled specially by the calling code - this means that GenerateStartOfStatement() + and GenerateEndOfStatement() do not have to set this information. + + + + + Gets or sets a label marking the end of the statement. + + + + + Generates CIL for the start of every statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + Variables common to both GenerateStartOfStatement() and GenerateEndOfStatement(). + + + + Generates CIL for the end of every statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + Variables common to both GenerateStartOfStatement() and GenerateEndOfStatement(). + + + + Converts the statement to a string. + + A string representing this statement. + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a javascript switch statement. + + + + + Creates a new SwitchStatement instance. + + The labels that are associated with this statement. + + + + Gets or sets an expression that represents the value to switch on. + + + + + Gets a list of case clauses (including the default clause). + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a single case statement inside a switch statement. + + + + + Gets or sets an expression that must match the switch value for the case to execute. + A value of null indicates this is the default clause. + + + + + Gets a list of the statement(s) in the body of the case statement. + + + + + Represents a throw statement. + + + + + Creates a new ThrowStatement instance. + + The labels that are associated with this statement. + + + + Gets or sets an expression which evaluates to the value to throw. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a try-catch-finally statement. + + + + + Creates a new TryCatchFinallyStatement instance. + + + + + Gets or sets the statement(s) inside the try block. + + + + + Gets or sets the statement(s) inside the catch block. Can be null. + + + + + Gets or sets the name of the variable to receive the exception. Can be null if + CatchStatement is also null or if the catch variable binding was omitted. + + + + + Gets or sets the statement(s) inside the finally block. Can be null. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a javascript var, let or const statement. + + + + + Creates a new VarStatement instance. + + The labels that are associated with this statement. + The scope the variables are defined within. + + + + Gets the scope the variables are defined within. + + + + + Indicates whether this is a 'var', 'let' or 'const' declaration. + + + + + Gets a list of variable declarations. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a variable declaration. + + + + + Gets the type of declaration. + + + + + Gets the name of the variable that is being declared. + + + + + Gets or sets the initial value of the variable. Can be null. + + + + + Gets or sets the portion of source code associated with the declaration. + + + + + Represents a javascript while statement. + + + + + Creates a new WhileStatement instance. + + The labels that are associated with this statement. + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a javascript with statement. + + + + + Creates a new WithStatement instance. + + The labels that are associated with this statement. + + + + The Scope associated with the with body. This is special as "var a" weirdly refers to + the scope object, if a property named "a" exists. + + + + + Gets or sets the body of the with statement. + + + + + Generates CIL for the statement. + + The generator to output the CIL to. + Information about any optimizations that should be performed. + + + + Gets an enumerable list of child nodes in the abstract syntax tree. + + + + + Converts the statement to a string. + + The number of tabs to include before the statement. + A string representing this statement. + + + + Represents a non-runtime compiler error. + + + + + Creates a new syntax error exception. + + A description of the error. + The line number in the source file the error occurred on. + The path or URL of the source file. Can be null. + + + + Creates a new syntax error exception. + + A description of the error. + The line number in the source file the error occurred on. + The path or URL of the source file. Can be null. + The name of the function. Can be null. + + + + Gets the line number in the source file the error occurred on. Can be 0 if no + line number information is available. + + + + + Gets the path or URL of the source file. Can be null if no source information + is available. + + + + + Gets the name of the function where the exception occurred. Can be null if no + source information is available. + + + + + Represents an arbitrarily large signed integer. + + + + + Initializes a new instance of the BigInteger structure using a 32-bit signed integer + value. + + A 32-bit signed integer. + + + + Initializes a new instance of the BigInteger structure using a 64-bit signed integer + value. + + A 64-bit signed integer. + + + + Gets a value that represents the number zero (0). + + + + + Gets a value that represents the number one (1). + + + + + Gets a number that indicates the sign (negative, positive or zero) of the current + BigInteger object. + + + + + Adds two BigInteger values and returns the result. + + The first value to add. + The second value to add. + The sum of and . + + + + Returns the product of two BigInteger values. + + The first number to multiply. + The second number to multiply. + The product of the and + parameters. + + + + Subtracts one BigInteger value from another and returns the result. + + The value to subtract from. + The value to subtract. + The result of subtracting from + . + + + + Shifts a BigInteger value a specified number of bits to the left. + + The value whose bits are to be shifted. + The number of bits to shift to the left. + Can be negative to shift to the right. + A value that has been shifted to the left by the specified number of bits. + + + + Shifts a BigInteger value a specified number of bits to the right. + + The value whose bits are to be shifted. + The number of bits to shift to the right. + A value that has been shifted to the right by the specified number of bits. + Can be negative to shift to the left. + Note: unlike System.Numerics.BigInteger, negative numbers are treated + identically to positive numbers. + + + + Multiply by m and add a. + + + + + + + + + Computes b x 5 ^ k. + + + + + + + + Returns -1 if a < b, 0 if they are the same, or 1 if a > b. + + + + + + + + Negates a specified BigInteger value. + + The value to negate. + The result of the parameter multiplied by negative + one (-1). + + + + Modifies the given values so they are suitable for passing to Quorem. + + The number that will be divided. + The number to divide by. + + + + Modifies the given values so they are suitable for passing to Quorem. + + The number that will be divided. + The number to divide by. + Another value involved in the division. + + + + Calculates the integer result of dividing by + then sets to the remainder. + + The number that will be divided. + The number to divide by. + The integer that results from dividing by + . + + + + Decrements the current value of the BigInteger object. + + + + + Equivalent to BigInteger.Pow but with integer arguments. + + The number to be raised to a power. + The number that specifies the power. + The number raised to the power + . + + + + Gets the absolute value of a BigInteger object. + + A number. + The absolute value of . + + + + Returns the logarithm of a specified number in a specified base. + + A number whose logarithm is to be found. + The base of the logarithm. + The base logarithm of . + + + + Returns a value that indicates whether the current instance and a specified BigInteger + object have the same value. + + The object to compare. + true if this BigInteger object and have the + same value; otherwise, false. + + + + Returns the hash code for the current BigInteger object. + + A 32-bit signed integer hash code. + + + + Converts the string representation of a number to its BigInteger equivalent. + + A string that contains the number to convert. + A value that is equivalent to the number specified in the + parameter. + + + + Converts the numeric value of the current BigInteger object to its equivalent string + representation. + + The string representation of the current BigInteger value. + + + + Returns a new instance BigInteger structure from a 64-bit double precision floating + point value. + + A 64-bit double precision floating point value. + The corresponding BigInteger value. + + + + Returns a double that corresponds to the BigInteger value. + + A double that corresponds to the BigInteger value. + + + + Returns the number of leading zero bits in the given 32-bit integer. + + A 32-bit integer. + The number of leading zero bits in the given 32-bit integer. Returns + 32 if is zero. + + + + Used to indicate that the script engine should run in compatibility mode. + + + + + Indicates that the script engine should run in the most standards compliant mode. + + + + + Indicates that the script engine should conform to the ECMAScript 3 specification. + This has the following effects: + 1. "this" is converted to an object at the call site of function calls. + 2. parseInt() parses octal numbers without requiring an explicit radix. + 3. NaN, undefined and Infinity can be modified. + 4. The list of keywords is much longer (for example, 'abstract' is a keyword). + + + + + Represents the result of compiling a script. + + + + + Compiles source code into a quickly executed form, using the given compiler options. + + The javascript source code to execute. + Compiler options, or null to use the default options. + A CompiledScript instance, which can be executed as many times as needed. + is a null reference. + + + + Gets the body of the generated method in the form of disassembled IL code. Will be + null unless was set to + true. + + + + + Executes the compiled eval code. + + The script engine to use to execute the script. + The result of the eval. + is a null reference. + + + + Represents the result of compiling a script. + + + + + Compiles source code into a quickly executed form, using the given compiler options. + + The javascript source code to execute. + Compiler options, or null to use the default options. + A CompiledScript instance, which can be executed as many times as needed. + is a null reference. + + + + Gets the body of the generated method in the form of disassembled IL code. Will be + null unless was set to + true. + + + + + Executes the compiled script. + + The script engine to use to execute the script. + is a null reference. + + + + Represents a string that supports efficient concatenation. This class is used instead of + when two strings are concatenated together using the addition + operator (+) or the concat() function. Use of this class avoids the creation of useless + intermediary strings and by doing so speeds up string concatenation dramatically + (this change improved sunspider/string-validate-input.js by almost 20x). + + + + + Creates a new ConcatenatedString instance from the given string. + + The initial contents of the concatenated string. + + + + Creates a new ConcatenatedString instance by concatenating the given strings. + + The left-most string to concatenate. + The right-most string to concatenate. + + + + Creates a new ConcatenatedString instance by concatenating the given strings. + + The strings to concatenate to form the initial value for this + object. The array must not be altered after passing it to this constructor. + + + + Gets the length, in characters, of the ConcatenatedString object. + + + + + Returns a new ConcatenatedString instance containing the concatenation of this ConcatenatedString + and the given object (converted to a string). + + The object to append to this string. + A new ConcatenatedString instance representing the concatenated string. + + + + Returns a new ConcatenatedString instance containing the concatenation of this ConcatenatedString + and the given string. + + The string to append. + A new ConcatenatedString instance representing the concatenated string. + + + + Returns a new ConcatenatedString instance containing the concatenation of this ConcatenatedString + and the given string. + + The string to append. + A new ConcatenatedString instance representing the concatenated string. + + + + Appends the given object (converted to a string) to the end of this object. + + The object to append. + + + + Appends the given string to the end of this object. + + The string to append. + + + + Appends the given string to the end of this object. + + The string to append. + + + + Returns a string representing the current object. + + A string representing the current object. + + + + Represents a wrapper for javascript error objects. + + + + + Creates a new JavaScriptException instance based on the given object. + + The javascript object that was thrown. + + + + Creates a new JavaScriptException instance based on the given object. + + The javascript object that was thrown. + The line number in the source file the error occurred on. + The path or URL of the source file. Can be null. + The name of the function. Can be null. + + + + Creates a new JavaScriptException instance. + + The type of error, e.g. Error, RangeError, etc. + A description of the error. + + + + Creates a new JavaScriptException instance. + + The type of error, e.g. Error, RangeError, etc. + A description of the error. + The exception that is the cause of the current exception, + or null if no inner exception is specified. + + + + Creates a new JavaScriptException instance. + + The type of error, e.g. Error, RangeError, etc. + A description of the error. + The line number in the source file the error occurred on. + The path or URL of the source file. Can be null. + + + + Creates a new JavaScriptException instance. + + The type of error, e.g. Error, RangeError, etc. + A description of the error. + The line number in the source file the error occurred on. + The path or URL of the source file. Can be null. + The exception that is the cause of the current exception, + or null if no inner exception is specified. + + + + Creates a new JavaScriptException instance. + + The type of error, e.g. Error, RangeError, etc. + A description of the error. + The line number in the source file the error occurred on. + The path or URL of the source file. Can be null. + The name of the function. Can be null. + + + + Gets a reference to the JavaScript Error object. + + + + + Gets the type of error, e.g. ErrorType.TypeError or ErrorType.SyntaxError. + + + + + The error message, excluding the error type. + + + + + Gets the line number in the source file the error occurred on. Can be 0 if no + line number information is available. + + + + + Gets the path or URL of the source file. Can be null if no source information + is available. + + + + + Gets the name of the function where the exception occurred. Can be null if no + source information is available. + + + + + Gets a reference to the script engine associated with this object. Will be null + for statements like "throw 2". + + + + + Returns the error instance associated with this exception. + + The script engine used to create the error object. + A new Error instance. + + + + Represents the JavaScript "null" type and provides the one and only instance of that type. + + + + + Creates a new Null instance. + + + + + Gets the one and only "null" instance. + + + + + Returns a string representing the current object. + + A string representing the current object. + + + + Converts numbers into strings. + + + + + Used to specify the type of number formatting that should be applied. + + + + + Specifies that the shortest number that accurately represents the number should be + displayed. Scientific notation is used if the exponent is less than -6 or greater + than twenty. The precision parameter has no semantic meaning. + + + + + Specifies that a fixed number of significant figures should be displayed (specified + by the precision parameter). If the number cannot be displayed using the given + number of digits, scientific notation is used. + + + + + Specifies that a fixed number of digits should be displayed after the decimal place + (specified by the precision parameter). Scientific notation is used if the + exponent is greater than twenty. + + + + + Specifies that numbers should always be displayed in scientific notation. The + precision parameter specifies the number of figures to display after the decimal + point. + + + + + Converts a number to a string. + + The value to convert to a string. + The base of the number system to convert to. + The type of formatting to apply. + + This value is dependent on the formatting style: + Regular - this value has no meaning. + Precision - the number of significant figures to display. + Fixed - the number of figures to display after the decimal point. + Exponential - the number of figures to display after the decimal point. + + + + + Converts a number to a string. + + The value to convert to a string. + The base of the number system to convert to. + The number format style to use. + The type of formatting to apply. + + This value is dependent on the formatting style: + Regular - this value has no meaning. + Precision - the number of significant figures to display. + Fixed - the number of figures to display after the decimal point. + Exponential - the number of figures to display after the decimal point. + + + + + Calculates the minimum increment that creates a number distinct from the value that was + provided. The error for the number is plus or minus half the result of this method + (note that the number returned by this method may be so small that dividing it by two + produces zero). + + The number to calculate an error value for. + The minimum increment that creates a number distinct from the value that was + provided. + + + + Scales the given double-precision number by multiplying and then shifting it. + + The value to scale. + The multiplier. + The power of two scale factor. + A BigInteger containing the result of multiplying by + and then shifting left by bits. + + + + Counts the number of trailing zero bits in the given 64-bit value. + + The 64-bit value. + The number of trailing zero bits in the given 64-bit value. + + + + Calculates (int)Math.Floor(Math.Log(value, radix)). + + The value to calculate the log for. + 10 for base-10. + The logarithm of the provided value, rounded down to the nearest integer. + + + + Parses strings into numbers. + + + + + Converts a string to a number (used by parseFloat). + + The string to convert. + The result of parsing the string as a number. + + + + Converts a string to a number (used in type coercion). + + The result of parsing the string as a number. + + + + Parses a number and returns the corresponding double-precision value. + + The reader to read characters from. + The first character of the number. Must be 0-9 or a period. + Upon returning, contains the type of error if one occurred. + + + The numeric value, or NaN if the number is invalid. + + + + Converts a string to an integer (used by parseInt). + + The input text to parse. + The numeric base to use for parsing. Pass zero to use base 10 + except when the input string starts with '0' in which case base 16 or base 8 are used + instead. + true if numbers with a leading zero should be parsed + as octal numbers. + The result of parsing the string as a integer. + + + + Parses a hexidecimal number and returns the corresponding double-precision value. + + The reader to read characters from. + The numeric value, or NaN if the number is invalid. + + + + Parses a octal number and returns the corresponding double-precision value. + + The reader to read characters from. + The numeric value, or NaN if the number is invalid. + + + + Parses a binary number and returns the corresponding double-precision value. + + The reader to read characters from. + The numeric value, or NaN if the number is invalid. + + + + Determines if the given character is whitespace or a line terminator. + + The unicode code point for the character. + true if the character is whitespace or a line terminator; false + otherwise. + + + + Modifies the initial estimate until the closest double-precision number to the desired + value is found. + + The initial estimate. Assumed to be very close to the + result. + The power-of-ten scale factor. + The desired value, already scaled using the power-of-ten + scale factor. + The closest double-precision number to the desired value. If there are two + such values, the one with the least significant bit set to zero is returned. + + + + Adds ULPs (units in the last place) to the given double-precision number. + + The value to modify. + The number of ULPs to add. Can be negative. + The modified number. + + + + Scales the given double-precision number by multiplying and then shifting it. + + The value to scale. + The multiplier. + The power of two scale factor. + A BigInteger containing the result of multiplying by + and then shifting left by bits. + + + + Represents the JavaScript script engine. This is the first object that needs to be + instantiated in order to execute javascript code. + + + + + Initializes a new scripting environment. + + + + + Implements the behaviour of the function that is the prototype of the Function object. + + + + + + + + + Gets or sets a value that indicates whether to force ECMAScript 5 strict mode, even if + the code does not contain a strict mode directive ("use strict"). The default is + false. + + + + + Gets or sets a value that indicates whether the script engine should run in + compatibility mode. + + + + + Gets or sets a value that indicates whether to disassemble any generated IL and store it + in the associated function. + + + + + Get or sets a value that indicates the maximum recursion depth of user-defined + functions that is allowed by this script engine. + When a user-defined function exceeds the recursion depth limit, a + will be thrown. + The default value is 0, which allows unlimited recursion. + + + + + Represents a method that transforms a stack frame when formatting the stack trace. + + + + + + Gets or sets a delegate that transforms a stack frame when + formatting the stack trace for . + This can be useful if you are using a source map to map generated lines + to source lines and the stack trace should contain the source line numbers. + + + + + The instance prototype of the Function object (i.e. Function.InstancePrototype). + + + This property solves a circular reference in the initialization, plus it speeds up + initialization. + + + + + The prototype shared by all iterators. + + + + + The prototype of all string iterators. + + + + + The prototype of all map iterators. + + + + + The prototype of all set iterators. + + + + + The prototype of all array iterators. + + + + + Gets the built-in global object. This object is implicitly accessed when creating + global variables and functions. + + + + + Gets the built-in Array object. + + + + + Gets the built-in Boolean object. + + + + + Gets the built-in Date object. + + + + + Gets the built-in Function object. + + + + + Gets the built-in Map object. + + + + + Gets the built-in Math object. + + + + + Gets the built-in Number object. + + + + + Gets the built-in Object object. + + + + + Gets the built-in Promise object. + + + + + Gets the built-in Proxy object. + + + + + Gets the built-in Reflect object. + + + + + Gets the built-in RegExp object. + + + + + Gets the built-in String object. + + + + + Gets the built-in String object. + + + + + Gets the built-in Symbol object. + + + + + Gets the built-in WeakMap object. + + + + + Gets the built-in WeakSet object. + + + + + Gets the built-in Error object. + + + + + Gets the built-in RangeError object. + + + + + Gets the built-in TypeError object. + + + + + Gets the built-in SyntaxError object. + + + + + Gets the built-in URIError object. + + + + + Gets the built-in EvalError object. + + + + + Gets the built-in ReferenceError object. + + + + + Gets the built-in ArrayBuffer object. + + + + + Gets the built-in DataView object. + + + + + Gets the built-in Int8Array object. + + + + + Gets the built-in Uint8Array object. + + + + + Gets the built-in Uint8ClampedArray object. + + + + + Gets the built-in Int16Array object. + + + + + Gets the built-in Uint16Array object. + + + + + Gets the built-in Int32Array object. + + + + + Gets the built-in Uint32Array object. + + + + + Gets the built-in Float32Array object. + + + + + Gets the built-in Float64Array object. + + + + + Gets or sets whether CLR types can be exposed directly to the script engine. If this is set to + false, attempting to instantiate CLR types from script may result in exceptions being + thrown in script. + + + This property is intended to prevent script developers from accessing the entire CLR + type system, for security purposes. When this property is set to false, it should prevent + new instances of CLR types from being exposed to the script engine, even if you have already + exposed CLR types to the script engine. + + + + + Compiles the given source code and returns it in a form that can be executed many + times. + + The javascript source code to execute. + A CompiledScript instance, which can be executed as many times as needed. + is a null reference. + + + + Executes the given source code. Execution is bound to the global scope. + + The javascript source code to execute. + The result of executing the source code. + is a null reference. + + + + Executes the given source code. Execution is bound to the global scope. + + The type to convert the result to. + The javascript source code to execute. + The result of executing the source code. + is a null reference. + + + + Executes the given source code. Execution is bound to the global scope. + + The javascript source code to execute. + The result of executing the source code. + is a null reference. + + + + Executes the given source code. Execution is bound to the global scope. + + The type to convert the result to. + The javascript source code to execute. + The result of executing the source code. + is a null reference. + + + + Executes the given source code. Execution is bound to the global scope. + + The javascript source code to execute. + + + + Executes the given file. If the file does not have a BOM then it is assumed to be UTF8. + Execution is bound to the global scope. + + The path to a javascript file. This can be a local file path or a + UNC path. + is a null reference. + + + + Executes the given file. Execution is bound to the global scope. + + The path to a javascript file. This can be a local file path or a + UNC path. + The character encoding to use if the file lacks a byte order + mark (BOM). + is a null reference. + + + + Executes the given source code. Execution is bound to the global scope. + + The javascript source code to execute. + is a null reference. + + + + Verifies the generated byte code. + + + + + Creates a CompilerOptions instance using the script engine properties. + + A populated CompilerOptions instance. + + + + Gets a value that indicates whether the global variable with the given name is defined. + + The name of the variable to check. + true if the given variable has a value; false otherwise. + Note that a variable that has been set to undefined is still + considered to have a value. + + + + Gets the value of the global variable with the given name. + + The name of the variable to retrieve the value for. + The value of the global variable, or null otherwise. + + + + Gets the value of the global variable with the given name and coerces it to the given + type. + + The type to coerce the value to. + The name of the variable to retrieve the value for. + The value of the global variable, or null otherwise. + Note that null is coerced to the following values: false (if + is bool), 0 (if is int + or double), string.Empty (if is string). + + + + Sets the value of the global variable with the given name. If the property does not + exist, it will be created. + + The name of the variable to set. + The desired value of the variable. This must be of a supported + type (bool, int, double, string, Null, Undefined or a ObjectInstance-derived type). + The property is read-only or the property does + not exist and the object is not extensible. + + + + Calls a global function and returns the result. + + The name of the function to call. + The argument values to pass to the function. + The return value from the function. + + + + Calls a global function and returns the result. + + The type to coerce the value to. + The name of the function to call. + The argument values to pass to the function. + The return value from the function, coerced to the given type. + + + + Sets the global variable with the given name to a function implemented by the provided + delegate. + + The name of the global variable to set. + The delegate that will implement the function. + + + + Fires when the compiler starts parsing javascript source code. + + + + + Fires when the compiler starts optimizing. + + + + + Fires when the compiler starts generating byte code. + + + + + Fires when the compiler starts running javascript code. + + + + + Gets an empty schema. + + + + + Evaluates the given javascript source code and returns the result. + + The source code to evaluate. + The containing scope. + The value of the "this" keyword in the containing scope. + Indicates whether the eval statement is being called from + strict mode code. + The value of the last statement that was executed, or undefined if + there were no executed statements. + + + + Creates a stack trace. + + The name of the error (e.g. "ReferenceError"). + The error message. + The path of the javascript source file that is currently executing. + The name of the currently executing function. + The line number of the statement that is currently executing. + + + + Appends a stack frame to the end of the given StringBuilder instance. + + The StringBuilder to append to. + The path of the javascript source file. + The name of the function. + The line number of the statement. + The method by which the current stack frame was created. + + + + Pushes a frame to the javascript stack. This needs to be called every time there is a + function call. + + The path of the javascript source file that contains the function. + The name of the function that is calling another function. + The line number of the function call. + The type of call that is being made. + + + + Pops a frame from the javascript stack. + + + + + Checks if the given is catchable by JavaScript code with a + catch clause. + Note: This method is public for technical reasons only and should not be used by user code. + + The exception to check. + true if the is catchable, false otherwise + + + + Gets a dictionary that can be used to cache ClrInstanceTypeWrapper instances. + + + + + Gets a dictionary that can be used to cache ClrStaticTypeWrapper instances. + + + + + Returns a cached template array, suitable for passing to a tag function. + + The cache key that identifies the array to return. + The cached template array, or null if no array with the given cache + key has been cached. + + + + Caches a template array using the given cache key. + + The cache key that identifies the array to cache. + The cached value. + + + + Appends a callback that will be executed at the end of script execution. + + The callback function. + + + + This method is called at the end of script execution in order to execute pending + callbacks registered with . + + + + + Clears (and does not execute) all queued post-execute actions. + + + + + Adds a callback to the end of the event queue. + + The action to enqueue. + This method is thread-safe. + + + + The number of queued actions in the event queue. + + + + + Removes the first available action from the event queue, and executes it. + + true if an event queue action was executed, false if the event + queue was empty. + + This method is meant to be called in a loop, like this: + + while (scriptEngine.ExecuteNextEventQueueAction()) { } + + If an exception is thrown, you should assume that the action was successfully removed + from the queue. This means can be called + again without triggering the same exception. + + + + + Represents a script file. + + + + + Creates a new FileScriptSource instance. + + The path of the script file. + The character encoding to use if the file lacks a byte order + mark (BOM). If this parameter is omitted, the file is assumed to be UTF8. + + + + Gets the path of the source file (either a path on the file system or a URL). This + can be null if no path is available. + + + + + Returns a reader that can be used to read the source code for the script. + + A reader that can be used to read the source code for the script, positioned + at the start of the source code. + If this method is called multiple times then each reader must return the + same source code. + + + + Represents a resource that can provide script code. This is the abstract base class of all + the script providers. + + + + + Gets the path of the source file (either a path on the file system or a URL). This + can be null if no path is available. + + + + + Returns a reader that can be used to read the source code for the script. + + A reader that can be used to read the source code for the script, positioned + at the start of the source code. + If this method is called multiple times then each reader must return the + same source code. + + + + Reads the source code within the given span. + + The start and end positions within the source code. + The source code within the given span. + + + + Represents a string containing script code. + + + + + Creates a new StringScriptSource instance. + + The script code. + + + + Creates a new StringScriptSource instance. + + The script code. + The path of the file the script code was retrieved from. + + + + Gets the path of the source file (either a path on the file system or a URL). This + can be null if no path is available. + + + + + Returns a reader that can be used to read the source code for the script. + + A reader that can be used to read the source code for the script, positioned + at the start of the source code. + If this method is called multiple times then each reader must return the + same source code. + + + + Contains stack frame properties which can be transformed when formatting the + stack trace. + + + + + Gets or sets a value that indicates if the stack frame represented by + this should be suppressed, so that + it is not displayed in the stack trace. + The default value is false. + + + + + Gets or sets the line number. A value of 0 means the line number + is unknown. + + + + + Gets or sets the path of the javascript script file. A value of + null means that the path is unknown. + + + + + Gets or sets the name of the function. A value of null or + the empty string ("") means that the path is unknown. + + + + + Contains handy string routines. + + + + + Concatenates a specified separator string between each element of a specified string + array, yielding a single concatenated string. + + The type of the members of + The string to use as a separator. + A collection that contains the objects to concatenate. + A string that consists of the members of delimited + by the string. + + + + Implements the JavaScript equality and comparison rules. + + + + + Compares two objects for equality. Used by the equality operator (==). + + The first object to compare. + The first object to compare. + true if the objects are identical; false otherwise. + + + + Compares two objects for equality. Used by the strict equality operator (===). + + The first object to compare. + The second object to compare. + true if the objects are identical; false otherwise. + + With this algorithm: + 1. NaN is not considered equal to NaN. + 2. +0 and -0 are considered to be equal. + + + + + Determines the ordering of two objects. Used by the less than operator (<). + + The first object to compare. + The second object to compare. + true if is less than ; + false otherwise. + + + + Determines the ordering of two objects. Used by the less than or equal operator (<=). + + The first object to compare. + The second object to compare. + true if is less than or equal to + ; false otherwise. + + + + Determines the ordering of two objects. Used by the greater than operator (>). + + The first object to compare. + The second object to compare. + true if is greater than ; + false otherwise. + + + + Determines the ordering of two objects. Used by the greater than or equal operator (>=). + + The first object to compare. + The second object to compare. + true if is greater than or equal to + ; false otherwise. + + + + Implements the SameValue algorithm. + + The first object to compare. + The second object to compare. + true if the objects are the same value according to the SameValue + algorithm. + + With this algorithm: + 1. NaN is considered equal to NaN. + 2. +0 and -0 are considered to be different. + + + + + Implements the SameValueZero algorithm. + + The first object to compare. + The second object to compare. + true if the objects are the same value according to the SameValueZero + algorithm. + + With this algorithm: + 1. NaN is considered equal to NaN. + 2. +0 and -0 are considered to be equal. + + + + + Provides a hint on how to do the conversion when converting to a primitive. + + + + + Use the default behaviour. + + + + + Prefer converting to a number. + + + + + Prefer converting to a string. + + + + + Implements the JavaScript type conversion rules. + + + + + Converts the given value to the given type. + + The script engine used to create new objects. + The value to convert. + The type to convert the value to. + The converted value. + + + + Converts the given value to the given type. + + The script engine used to create new objects. + The value to convert. + The type to convert the value to. + The converted value. + + + + Converts any JavaScript value to a primitive boolean value. + + The value to convert. + A primitive boolean value. + + + + Converts any JavaScript value to a primitive number value. + + The value to convert. + A primitive number value. + + + + Converts any JavaScript value to a primitive string value. + + The value to convert. + A primitive string value. + + + + Converts any JavaScript value to a primitive string value. + + The value to convert. + The value to return if the input is undefined. + A primitive string value. + + + + Converts any JavaScript value to a concatenated string value. + + The value to convert. + A concatenated string value. + + + + Converts any JavaScript value to an object. + + The script engine used to create new objects. + The value to convert. + An object. + + + + Converts any JavaScript value to an object. + + The script engine used to create new objects. + The value to convert. + The line number in the source file the error occurred on. + The path or URL of the source file. Can be null. + The name of the function. Can be null. + An object. + + + + Converts any JavaScript value to an object. + + The script engine used to create new objects. + The value to convert. + An object. + + + + Converts any JavaScript value to a primitive value. + + The value to convert. + Specifies whether toString() or valueOf() should be + preferred when converting to a primitive. + A primitive (non-object) value. + + + + Converts a value to a property key (either a string or a symbol). + + The value to convert. + A property key value. + + + + Converts any JavaScript value to an integer. + + The value to convert. + An integer value. + + + + Converts any JavaScript value to a 32-bit integer. + + The value to convert. + A 32-bit integer value. + + + + Converts any JavaScript value to an unsigned 32-bit integer. + + The value to convert. + An unsigned 32-bit integer value. + + + + Converts any JavaScript value to a signed 16-bit integer. + + The value to convert. + A signed 16-bit integer value. + + + + Converts any JavaScript value to an unsigned 16-bit integer. + + The value to convert. + An unsigned 16-bit integer value. + + + + Converts any JavaScript value to a signed 8-bit integer. + + The value to convert. + A signed 8-bit integer value. + + + + Converts any JavaScript value to an unsigned 8-bit integer. + + The value to convert. + An unsigned 8-bit integer value. + + + + Utility method to convert an object array to a typed array. + + The type to convert to. + The script engine used to create new objects. + The array to convert. + The number of elements to skip at the beginning of the array. + A typed array. + + + + Contains type-related functionality that isn't conversion or comparison. + + + + + Gets the type name for the given object. Used by the typeof operator. + + The object to get the type name for. + The type name for the given object. + + + + Returns true if the given value is undefined. + + The object to check. + true if the given value is undefined; false otherwise. + + + + Returns true if the given value is a supported numeric type. + + The object to check. + true if the given value is a supported numeric type; false + otherwise. + + + + Returns true if the given value is a supported string type. + + The object to check. + true if the given value is a supported string type; false + otherwise. + + + + Converts the given value into a standard .NET type, suitable for returning from an API. + + The value to normalize. + The value as a standard .NET type. + + + + Enumerates the names of the enumerable properties on the given object, including + properties defined on the object's prototype. Used by the for-in statement. + + The script engine used to convert the given value to an object. + The object to enumerate. + An enumerator that iteratively returns property names. + + + + Adds two objects together, as if by the javascript addition operator. + + The left hand side operand. + The right hand side operand. + Either a number or a concatenated string. + + + + Determines if the given value is a supported JavaScript primitive. + + The value to test. + true if the given value is a supported JavaScript primitive; + false otherwise. + + + + Determines if the given value is a supported JavaScript primitive or derives from + ObjectInstance. + + The value to test. + true if the given value is a supported JavaScript primitive or derives + from ObjectInstance; false otherwise. + + + + Throws a TypeError when the given value is null or undefined. + + The associated script engine. + The value to check. + The name of the function which is doing the check. + + + + Utility method for create a slice of an array. + + The array to slice. + The offset to begin the resulting array. + An array containing the input array elements, excluding the first + entries. + + + + Determines if the given number is negative zero. + + The value to test. + true if the value is negative zero; false otherwise. + + + + Determines if the given number is positive zero. + + The value to test. + true if the value is positive zero; false otherwise. + + + + Converts an iteratable object into a iterator by looking up the @@iterator property, + then calling that value as a function. + + The script engine. + The object to get a iterator from. + An iterator object, with a next function, or null if the iterator + symbol value is undefined or null. + + + + Creates an iterator object that can iterate over a .NET enumerable collection. The + returned object also supports the iterable protocol, meaning it can be used in a for-of + loop. + + The script engine to associate the new object with. + The enumerable collection. The item type must be a supported + type. + An iterator object that also supports the iterable protocol. + + + + Converts an iteratable object into a iterator by looking up the @@iterator property, + then calling that value as a function. Throws an exception if the object isn't iterable. + + The script engine. + The object to get a iterator from. + An iterator object, with a next function. + + + + Iterate over the values in an iterator. + + The script engine. + The iterator object. Must contain a next function. + An enumerable list of iterator values. + + + + Implements the logic for the for-of operator. + + The script engine. + The object to get a iterator from. + An enumerable list of iterator values. + + + + Create an array whose elements are provided by the indexed properties of an array-like object. + + The array-like object to convert. + An array. + + + + Retrieves the constructor that should be used to create new objects that are derived + from the argument object . + + The object to check. + The constructor to return if no @@species property + can be found. + A constructor that can be used to create new objects. + + + + Represents the JavaScript "undefined" type and provides the one and only instance of that type. + + + + + Creates a new Undefined instance. + + + + + Gets the one and only "undefined" instance. + + + + + Returns a string representing the current object. + + A string representing the current object. + + + + Implements the array algorithms that are shared between arrays and typed arrays. + + + + + Creates a new ArrayWrapper instance. + + The array-like object that is being wrapped. + The number of elements in the array. + + + + The current scripting environment. + + + + + The array-like object that is being wrapped. + + + + + The number of elements in the array. + + + + + Gets or sets an array element within the range 0 .. Length-1 (inclusive). + + The index to get or set. + The value at the given index. + + + + Deletes the value at the given array index, throwing an exception on error. + + The array index to delete. + + + + Indicates whether the array index exists (has a value). + + The index to check. + true if the index exists, false otherwise. + + + + Creates a new array of the same type as this one. + + The values in the new array. + A new array object. + + + + Convert an untyped value to a typed value. + + The value to convert. + The value converted to type . + + + + Concatenates all the elements of the array, using the specified separator between each + element. If no separator is provided, a comma is used for this purpose. + + The string to use as a separator. + A string that consists of the element values separated by the separator string. + + + + Reverses the order of the elements in the array. + + The array that is being operated on. + + + + Returns a section of an array. + + The index of the first element in the section. If this value is + negative it is treated as an offset from the end of the array. + The index of the element just past the last element in the section. + If this value is negative it is treated as an offset from the end of the array. If + is less than or equal to then an empty + array is returned. + A section of an array. + + + + Sorts the array. + + A comparison function. + The array that was sorted. + + + + Returns a locale-specific string representing this object. + + A locale-specific string representing this object. + + + + Returns a string representing this object. + + A string representing this object. + + + + Returns the index of the given search element in the array, starting from + . + + The value to search for. + The array index to start searching. + The index of the given search element in the array, or -1 if the + element wasn't found. + + + + Returns the index of the given search element in the array, searching backwards from + . + + The value to search for. + The array index to start searching. + The index of the given search element in the array, or -1 if the + element wasn't found. + + + + Determines if every element of the array matches criteria defined by the given user- + defined function. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + true if every element of the array matches criteria defined by the + given user-defined function; false otherwise. + + + + Determines if at least one element of the array matches criteria defined by the given + user-defined function. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + true if at least one element of the array matches criteria defined by + the given user-defined function; false otherwise. + + + + Calls the given user-defined function once per element in the array. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. + The value of this in the context of the callback function. + + + + Creates a new array with the results of calling the given function on every element in + this array. + + A user-defined function that is called for each element + in the array. This function is called with three arguments: the value of the element, + the index of the element, and the array that is being operated on. The value that is + returned from this function is stored in the resulting array. + The value of this in the context of the callback function. + A new array with the results of calling the given function on every element + in the array. + + + + Returns the first element in the given array that passes the test implemented by the + given function. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + The first element that results in the callback returning true. + + + + Creates a new array with the elements from this array that pass the test implemented by + the given function. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + A copy of this array but with only those elements which produce true + when passed to the provided function. + + + + Accumulates a single value by calling a user-defined function for each element. + + A user-defined function that is called for each element + in the array. This function is called with four arguments: the current accumulated + value, the value of the element, the index of the element, and the array that is being + operated on. The return value for this function is the new accumulated value and is + passed to the next invocation of the function. + The initial accumulated value. + The accumulated value returned from the last invocation of the callback + function. + + + + Accumulates a single value by calling a user-defined function for each element + (starting with the last element in the array). + + A user-defined function that is called for each element + in the array. This function is called with four arguments: the current accumulated + value, the value of the element, the index of the element, and the array that is being + operated on. The return value for this function is the new accumulated value and is + passed to the next invocation of the function. + The initial accumulated value. + The accumulated value returned from the last invocation of the callback + function. + + + + Copies the sequence of array elements within the array to the position starting at + target. The copy is taken from the index positions of the second and third arguments + start and end. The end argument is optional and defaults to the length of the array. + This method has the same algorithm as Array.prototype.copyWithin. + + Target start index position where to copy the elements to. + Source start index position where to start copying elements from. + Optional. Source end index position where to end copying elements from. + The array that is being operated on. + + + + Fills all the elements of a typed array from a start index to an end index with a + static value. + + The value to fill the typed array with. + Optional. Start index. Defaults to 0. + Optional. End index (exclusive). Defaults to the length of the array. + The array that is being operated on. + + + + Returns an index in the typed array, if an element in the typed array satisfies the + provided testing function. Otherwise -1 is returned. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + The first element that results in the callback returning true. + + + + Determines whether an array includes a certain value among its entries. + + The value to search for. + The array index to start searching. + true given search element in the array, or false if the element + wasn't found. + + + + Sorts a array using the quicksort algorithm. + + A comparison function. + The first index in the range. + The last index in the range. + + + + Sorts a array using the insertion sort algorithm. + + A comparison function. + The first index in the range. + The last index in the range. + + + + Swaps the elements at two locations in the array. + + The location of the first element. + The location of the second element. + + + + Represents the built-in javascript Array object. + + + + + Creates a new Array object. + + The next object in the prototype chain. + + + + Creates a new Array instance. + + + + + Creates a new Array instance. + + The initial elements of the new array. + + + + Creates a new Array instance. + + The prototype of the newly created array. + The initial elements of the new array. + + + + A reference to the constructor function that is used to create derived objects. + + + + + Creates a new Array instance and initializes the contents of the array. + Called when the Array object is invoked like a function, e.g. var x = Array(length). + + The initial elements of the new array. + + + + Creates a new Array instance and initializes the contents of the array. + Called when the new expression is used on this object, e.g. var x = new Array(length). + + The initial elements of the new array. + + + + Creates a new Array instance and initializes the contents of the array. + Called when the new expression is used on this object, e.g. var x = new Array(length). + + The value of the new.target expression. + The initial elements of the new array. + + + + Tests if the given value is an Array instance. + + The value to test. + true if the given value is an Array instance, false otherwise. + + + + Creates a new Array instance from a variable number of arguments. + + The difference between Array.of() and the Array constructor is in the handling of + integer arguments: Array.of(7) creates an array with a single element, 7, whereas + Array(7) creates an empty array with a length property of 7. + + The script engine to use. + The elements of the new array. + + + + The Array.from() method creates a new, shallow-copied Array instance from an array-like + or iterable object. + + The script engine to use. + An array-like or iterable object to convert to an array. + + + + + The Array.from() method creates a new, shallow-copied Array instance from an array-like + or iterable object. + + The script engine to use. + An array-like or iterable object to convert to an array. + Map function to call on every element of the array. + Value to use as this when executing . + + + + + Represents an instance of the JavaScript Array object. + + + + + Creates a new array with the given length and capacity. + + The next object in the prototype chain. + The initial value of the length property. + The number of elements to allocate. + + + + Creates a new array and initializes it with the given array. + + The next object in the prototype chain. + The initial values in the array. + + + + Creates a new array and initializes it with the given sparse array. + + The next object in the prototype chain. + The sparse array to use as the backing store. + The initial value of the length property. + + + + Creates the Array prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + Gets or sets the number of elements in the array. Equivalent to the javascript + Array.prototype.length property. + + + + + Gets an enumerable list of the defined element values stored in this array. + + + + + Attempts to parse a string into a valid array index. + + The property key (either a string or a Symbol). + The array index value, or uint.MaxValue if the property name does not reference + an array index. + + + + Converts the JS array to a .NET object array. + + A .NET object array. + + + + Gets a descriptor for the property with the given array index. + + The array index of the property. + A property descriptor containing the property value and attributes. + The prototype chain is not searched. + + + + Sets the value of the property with the given array index. If a property with the + given index does not exist, or exists in the prototype chain (and is not a setter) then + a new property is created. + + The array index of the property to set. + The value to set the property to. This must be a javascript + primitive (double, string, etc) or a class derived from . + The value of the "this" keyword inside a getter. + true to throw an exception if the property could not + be set. This can happen if the property is read-only or if the object is sealed. + false if is false and an error + occurred; true otherwise. + + + + Deletes the property with the given array index. + + The array index of the property to delete. + true to throw an exception if the property could not + be set because the property was marked as non-configurable. + true if the property was successfully deleted, or if the property did + not exist; false if the property was marked as non-configurable and + was false. + + + + Defines or redefines the value and attributes of a property. The prototype chain is + not searched so if the property exists but only in the prototype chain a new property + will be created. + + The property key of the property to modify. + The property value and attributes. + true to throw an exception if the property could not + be set. This can happen if the property is not configurable or the object is sealed. + true if the property was successfully modified; false otherwise. + + + + Gets an enumerable list of every property name associated with this object. + Does not include properties in the prototype chain. + + + + + Returns a new array consisting of the values of this array plus any number of + additional items. Values are appended from left to right. + + The array that is being operated on. + Any number of items to append. + A new array consisting of the values of this array plus any number of + additional items. + + + + Removes the last element from the array and returns it. + + The array to operate on. + The last element from the array. + + + + Removes the last element from the array and returns it. + + The last element from the array. + + + + Appends one or more elements to the end of the array. + + The array that is being operated on. + The items to append to the array. + + + + Appends one element to the end of the array. + + The item to append to the array. + + + + The first element in the array is removed from the array and returned. All the other + elements are shifted down in the array. + + The array that is being operated on. + The first element in the array. + + + + Deletes a range of elements from the array and optionally inserts new elements. + + The array that is being operated on. + An array containing the deleted elements, if any. + + + + Deletes a range of elements from the array and optionally inserts new elements. + + The array that is being operated on. + The index to start deleting from. + An array containing the deleted elements, if any. + + + + Deletes a range of elements from the array and optionally inserts new elements. + + The array that is being operated on. + The index to start deleting from. + The number of elements to delete. + The items to insert. + An array containing the deleted elements, if any. + + + + Prepends the given items to the start of the array. + + The array that is being operated on. + The items to prepend. + The new length of the array. + + + + Creates a new array with all sub-array elements concatenated into it recursively up to + the specified depth. + + The array that is being operated on. + The depth level specifying how deep a nested array structure + should be flattened. Defaults to 1. + A new array with the sub-array elements concatenated into it. + + + + Maps each element using a mapping function, then flattens the result into a new array. + + The array that is being operated on. + A function that produces an element of the new Array, taking + three arguments: currentValue, index, array. + Value to use as this when executing callback. + A new array with each element being the result of the callback function and + flattened to a depth of 1. + + + + Implements an adapter for regular JS arrays. + + + + + Creates a new ArrayInstanceWrapper instance. + + The array-like object that is being wrapped. + + + + Gets or sets an array element within the range 0 .. Length-1 (inclusive). + + The index to get or set. + The value at the given index. + + + + Deletes the value at the given array index, throwing an exception on error. + + The array index to delete. + + + + Indicates whether the array index exists (has a value). + + The index to check. + true if the index exists, false otherwise. + + + + Creates a new array of the same type as this one. + + The values in the new array. + A new array object. + + + + Convert an untyped value to a typed value. + + The value to convert. + The typed value. + + + + Concatenates all the elements of the array, using the specified separator between each + element. If no separator is provided, a comma is used for this purpose. + + The array that is being operated on. + The string to use as a separator. + A string that consists of the element values separated by the separator string. + + + + Reverses the order of the elements in the array. + + The array that is being operated on. + The array that is being operated on. + + + + Returns a section of an array. + + The array that is being operated on. + The index of the first element in the section. If this value is + negative it is treated as an offset from the end of the array. + The index of the element just past the last element in the section. + If this value is negative it is treated as an offset from the end of the array. If + is less than or equal to then an empty + array is returned. + A section of an array. + + + + Sorts the array. + + The array that is being operated on. + A function which determines the order of the + elements. This function should return a number less than zero if the first argument is + less than the second argument, zero if the arguments are equal or a number greater than + zero if the first argument is greater than Defaults to an ascending ASCII ordering. + The array that was sorted. + + + + Returns a locale-specific string representing this object. + + The array that is being operated on. + A locale-specific string representing this object. + + + + Returns a string representing this object. + + The array that is being operated on. + A string representing this object. + + + + Returns the index of the given search element in the array, starting from + . + + The array that is being operated on. + The value to search for. + The array index to start searching. + The index of the given search element in the array, or -1 if the + element wasn't found. + + + + Returns the index of the given search element in the array, searching backwards from + the end of the array. + + The array that is being operated on. + The value to search for. + The index of the given search element in the array, or -1 if the + element wasn't found. + + + + Returns the index of the given search element in the array, searching backwards from + . + + The array that is being operated on. + The value to search for. + The array index to start searching. + The index of the given search element in the array, or -1 if the + element wasn't found. + + + + Determines if every element of the array matches criteria defined by the given user- + defined function. + + The array that is being operated on. + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + true if every element of the array matches criteria defined by the + given user-defined function; false otherwise. + + + + Determines if at least one element of the array matches criteria defined by the given + user-defined function. + + The array that is being operated on. + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + true if at least one element of the array matches criteria defined by + the given user-defined function; false otherwise. + + + + Calls the given user-defined function once per element in the array. + + The array that is being operated on. + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. + The value of this in the context of the callback function. + + + + Creates a new array with the results of calling the given function on every element in + this array. + + The array that is being operated on. + A user-defined function that is called for each element + in the array. This function is called with three arguments: the value of the element, + the index of the element, and the array that is being operated on. The value that is + returned from this function is stored in the resulting array. + The value of this in the context of the callback function. + A new array with the results of calling the given function on every element + in the array. + + + + Returns the first element in the given array that passes the test implemented by the + given function. + + The array that is being operated on. + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + The first element that results in the callback returning true. + + + + Creates a new array with the elements from this array that pass the test implemented by + the given function. + + The array that is being operated on. + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + A copy of this array but with only those elements which produce true + when passed to the provided function. + + + + Accumulates a single value by calling a user-defined function for each element. + + The array that is being operated on. + A user-defined function that is called for each element + in the array. This function is called with four arguments: the current accumulated + value, the value of the element, the index of the element, and the array that is being + operated on. The return value for this function is the new accumulated value and is + passed to the next invocation of the function. + The initial accumulated value. + The accumulated value returned from the last invocation of the callback + function. + + + + Accumulates a single value by calling a user-defined function for each element + (starting with the last element in the array). + + The array that is being operated on. + A user-defined function that is called for each element + in the array. This function is called with four arguments: the current accumulated + value, the value of the element, the index of the element, and the array that is being + operated on. The return value for this function is the new accumulated value and is + passed to the next invocation of the function. + The initial accumulated value. + The accumulated value returned from the last invocation of the callback + function. + + + + Copies the sequence of array elements within the array to the position starting at + target. The copy is taken from the index positions of the second and third arguments + start and end. The end argument is optional and defaults to the length of the array. + This method has the same algorithm as Array.prototype.copyWithin. + + The array that is being operated on. + Target start index position where to copy the elements to. + Source start index position where to start copying elements from. + Optional. Source end index position where to end copying elements from. + The array that is being operated on. + + + + Fills all the elements of a typed array from a start index to an end index with a + static value. + + The array that is being operated on. + The value to fill the typed array with. + Optional. Start index. Defaults to 0. + Optional. End index (exclusive). Defaults to the length of the array. + The array that is being operated on. + + + + Returns an index in the typed array, if an element in the typed array satisfies the + provided testing function. Otherwise -1 is returned. + + The array that is being operated on. + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + The first element that results in the callback returning true. + + + + Returns a new array iterator object that contains the key/value pairs for each index in + the array. + + An array iterator object that contains the key/value pairs for each index in + the array. + + + + Returns a new array iterator object that contains the keys for each index in the array. + + An array iterator object that contains the keys for each index in the array. + + + + Returns a new array iterator object that contains the values for each index in the + array. + + An array iterator object that contains the values for each index in the + array. + + + + Determines whether an array includes a certain value among its entries. + + The array that is being operated on. + The value to search for. + The array index to start searching. + true given search element in the array, or false if the element + wasn't found. + + + + Gets the number of items in the array. + + The array that is being operated on. + The number of items in the array. + + + + Sets the number of items in the array. + + The array that is being operated on. + The new value of the length property. + + + + Enlarges the size of the dense array. + + The new capacity of the array. + The valid number of items in the array. + + + + Recursively appends sub-array elements into the given list. + + The list to append to. + The array elements to append. + A function that produces an element of the new Array, taking + three arguments: currentValue, index, array. + Value to use as this when executing callback. + The depth of recursion when iterating through elements. + + + + Indicates whether the given object should be concatenated as if it was an array. + + The script engine. + The value to check. + true if the value should be concatenated as if it was an array, + false otherwise. + + + + Enumerates the list of array-like properties (with numeric names). + + The script engine. + The object to enumerate properties of. + The value of the length property. No indices are returned that + are higher or equal to this value. + Enumerates the list of array-like properties (with numeric names). + + + + Represents an iteration over an array-like object. + + + + + Creates a new array iterator. + + The next object in the prototype chain. + The array-like object to iterate over. + The type of values to return. + + + + Creates the array iterator prototype object. + + The script environment. + + + + The tag value that is used by the base implementation of toString(). + + + + + Moves the iterator to the next element in the array. + + An object containing two properies: value and done. + + + + Represents an array with non-consecutive elements. + + + + + Creates a sparse array from the given dense array. + + The array to copy items from. + The number of items to copy. + A new sparse array containing the items from the given array. + + + + Deletes (sets to null) an array element. + + The index of the array element to delete. + + + + Deletes (sets to null) a range of array elements. + + The index of the first array element to delete. + The number of array elements to delete. + + + + Deletes (sets to null) a range of array elements. + + The index of the first array element to delete. + The number of array elements to delete. + The parent node of the node to delete from. Can be null. + The node to delete from. + The index of the node, in the parent node's array. + The depth of the tree, treating as the root. + + + + Copies the elements of the sparse array to this sparse array, starting at a particular + index. Existing values are overwritten. + + The sparse array to copy. + The zero-based index at which copying begins. + The number of elements to copy. + + + + Copies the elements of the given sparse array to this sparse array, starting at a + particular index. Existing values are overwritten. + + The sparse array to copy. + The zero-based index at which copying begins. + + + + Represents the built-in javascript Boolean object. + + + + + Creates a new Boolean object. + + The next object in the prototype chain. + + + + Called when the Boolean object is invoked like a function, e.g. var x = Boolean("5"). + Converts the given argument into a boolean value (not a Boolean object). + + + + + Creates a new Boolean instance and initializes it to the given value. + + The value to initialize to. Defaults to false. + + + + Represents an instance of the JavaScript Boolean object. + + + + + Creates a new boolean instance. + + The next object in the prototype chain. + The value to initialize the instance with. + + + + Creates the Boolean prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + Gets the primitive value of this object. + + + + + Returns the underlying primitive value of the current object. + + The underlying primitive value of the current object. + + + + Returns a string representing this object. + + A string representing this object. + + + + Represents the instance portion of a CLR type that cannot be exposed directly but instead + must be wrapped. + + + + + Retrieves a ClrInstanceTypeWrapper object from the cache, if possible, or creates it + otherwise. + + The associated script engine. + The CLR type to wrap. + + + + Creates a new ClrInstanceTypeWrapper object. + + The associated script engine. + The CLR type to wrap. + + + + Returns an object instance to serve as the next object in the prototype chain. + + The associated script engine. + The CLR type to wrap. + The next object in the prototype chain. + + + + Gets the .NET type this object represents. + + + + + Returns a textual representation of this object. + + A textual representation of this object. + + + + Represents a non-native CLR object instance. + + + + + Creates a new ClrInstanceWrapper object. + + The associated script engine. + The CLR object instance to wrap. + + + + Returns an object instance to serve as the next object in the prototype chain. + + The associated script engine. + The CLR object instance to wrap. + The next object in the prototype chain. + + + + Creates an instance of ClrInstanceWrapper or ArrayInstance based on object type. + + The associated script engine. + The CLR object instance to wrap. + + + + Gets the .NET instance this object represents. + + + + + Returns a textual representation of this object. + + A textual representation of this object. + + + + Represents the static portion of a CLR type that cannot be exposed directly but instead + must be wrapped. + + + + + Retrieves a ClrStaticTypeWrapper object from the cache, if possible, or creates it + otherwise. + + The associated script engine. + The CLR type to wrap. + + + + Creates a new ClrStaticTypeWrapper object. + + The associated script engine. + The CLR type to wrap. + + + + Returns an object instance to serve as the next object in the prototype chain. + + The associated script engine. + The CLR type to wrap. + The next object in the prototype chain. + + + + Gets the .NET type this object represents. + + + + + Calls this function, passing in the given "this" value and zero or more arguments. + + The value of the "this" keyword within the function. + An array of argument values. + The value that was returned from the function. + + + + Creates an object, using this function as the constructor. + + The value of 'new.target'. + An array of argument values. + The object that was created. + + + + Populates the given object with properties, field and methods based on the given .NET + type. + + The object to populate. + The .NET type to search for methods. + BindingFlags.Static to populate static methods; + BindingFlags.Instance to populate instance methods. + + + + Returns a textual representation of this object. + + A textual representation of this object. + + + + Represents the built-in javascript Date object. + + + + + Creates a new Date object. + + The next object in the prototype chain. + + + + Called when the Date object is invoked like a function, e.g. var x = Date(). + Returns a string representing the current time. + + + + + Creates a new Date object and sets its value to the current time. + + + + + Creates a new Date object from a millisecond value. + + The number of milliseconds since 1 January 1970 00:00:00 UTC. + + + + Creates a new Date object from a string. + + A string representing a date, expressed in RFC 1123 format. + + + + Creates a new Date object from various date components, expressed in local time. + + The full year. + The month as an integer between 0 and 11 (january to december). + The day of the month, from 1 to 31. Defaults to 1. + The number of hours since midnight, from 0 to 23. Defaults to 0. + The number of minutes, from 0 to 59. Defaults to 0. + The number of seconds, from 0 to 59. Defaults to 0. + The number of milliseconds, from 0 to 999. Defaults to 0. + + If any of the parameters are out of range, then the other values are modified accordingly. + + + + + Creates a new Date object from various date components, expressed in local time. + + An array containing date components, in the following order: + year, month, day, hour, minute, second and millisecond. + + If any of the parameters are out of range, then the other values are modified accordingly. + + + + + Returns the current date and time as the number of milliseconds elapsed since January 1, + 1970, 00:00:00 UTC. + + The current date and time as the number of milliseconds elapsed since January 1, + 1970, 00:00:00 UTC. + + + + Given the components of a UTC date, returns the number of milliseconds since January 1, + 1970, 00:00:00 UTC to that date. + + The full year. + The month as an integer between 0 and 11 (january to december). + The day of the month, from 1 to 31. Defaults to 1. + The number of hours since midnight, from 0 to 23. Defaults to 0. + The number of minutes, from 0 to 59. Defaults to 0. + The number of seconds, from 0 to 59. Defaults to 0. + The number of milliseconds, from 0 to 999. Defaults to 0. + The number of milliseconds since January 1, 1970, 00:00:00 UTC to the given + date. + + This method differs from the Date constructor in two ways: + 1. The date components are specified in UTC time rather than local time. + 2. A number is returned instead of a Date instance. + + If any of the parameters are out of range, then the other values are modified accordingly. + + + + + Parses a string representation of a date, and returns the number of milliseconds since + January 1, 1970, 00:00:00 UTC. + + A string representing a date, expressed in RFC 1123 format. + + + + The prototype for the Date object. + + + + + The underlying DateTime value. + + + + + A DateTime that represents an invalid date. + + + + + Creates a new Date instance and initializes it to the current time. + + The next object in the prototype chain. + + + + Creates a new Date instance from the given date value. + + The next object in the prototype chain. + The number of milliseconds since January 1, 1970, 00:00:00 UTC. + + + + Creates a new Date instance from the given date string. + + The next object in the prototype chain. + A string representing a date, expressed in RFC 1123 format. + + + + Creates a new Date instance from various date components, expressed in local time. + + The next object in the prototype chain. + The full year. + The month as an integer between 0 and 11 (january to december). + The day of the month, from 1 to 31. Defaults to 1. + The number of hours since midnight, from 0 to 23. Defaults to 0. + The number of minutes, from 0 to 59. Defaults to 0. + The number of seconds, from 0 to 59. Defaults to 0. + The number of milliseconds, from 0 to 999. Defaults to 0. + + If any of the parameters are out of range, then the other values are modified accordingly. + + + + + Creates a new Date instance from the given date. + + The next object in the prototype chain. + The date to set the instance value to. + + + + Creates the Date prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + Gets the date represented by this object in standard .NET DateTime format. + + + + + Gets the date represented by this object as the number of milliseconds elapsed since + January 1, 1970, 00:00:00 UTC. + + + + + Gets a value indicating whether the date instance is valid. A date can be invalid if + NaN is passed to any of the constructor parameters. + + + + + Returns the year component of this date, according to local time. + + The year component of this date, according to local time. + + + + Returns the year component of this date as an offset from 1900, according to local time. + + The year component of this date as an offset from 1900, according to local time. + + + + Returns the month component of this date, according to local time. + + The month component (0-11) of this date, according to local time. + + + + Returns the day of the month component of this date, according to local time. + + The day of the month component (1-31) of this date, according to local time. + + + + Returns the day of the week component of this date, according to local time. + + The day of the week component (0-6) of this date, according to local time. + + + + Returns the hour component of this date, according to local time. + + The hour component (0-23) of this date, according to local time. + + + + Returns the minute component of this date, according to local time. + + The minute component (0-59) of this date, according to local time. + + + + Returns the seconds component of this date, according to local time. + + The seconds component (0-59) of this date, according to local time. + + + + Returns the millisecond component of this date, according to local time. + + The millisecond component (0-999) of this date, according to local time. + + + + Returns the number of milliseconds since January 1, 1970, 00:00:00 UTC. + + The number of milliseconds since January 1, 1970, 00:00:00 UTC. + + + + Returns the time-zone offset in minutes for the current locale. + + The time-zone offset in minutes for the current locale. + + + + Returns the year component of this date, according to universal time. + + The year component of this date, according to universal time. + + + + Returns the month component of this date, according to universal time. + + The month component (0-11) of this date, according to universal time. + + + + Returns the day of the month component of this date, according to universal time. + + The day of the month component (1-31) of this date, according to universal time. + + + + Returns the day of the week component of this date, according to universal time. + + The day of the week component (0-6) of this date, according to universal time. + + + + Returns the hour component of this date, according to universal time. + + The hour component (0-23) of this date, according to universal time. + + + + Returns the minute component of this date, according to universal time. + + The minute component (0-59) of this date, according to universal time. + + + + Returns the seconds component of this date, according to universal time. + + The seconds component (0-59) of this date, according to universal time. + + + + Returns the millisecond component of this date, according to universal time. + + The millisecond component (0-999) of this date, according to universal time. + + + + Sets the full year (4 digits for 4-digit years) of this date, according to local time. + + The 4 digit year. + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the full year (4 digits for 4-digit years) of this date, according to local time. + + The 4 digit year. + The month (0-11). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the full year (4 digits for 4-digit years) of this date, according to local time. + + The 4 digit year. + The month (0-11). + The day of the month (1-31). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the year of this date, according to local time. + + The year. Numbers less than 100 will be assumed to be + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the month of this date, according to local time. + + The month (0-11). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the month of this date, according to local time. + + The month (0-11). + The day of the month (1-31). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the day of this date, according to local time. + + The day of the month (1-31). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the hours component of this date, according to local time. + + The number of hours since midnight (0-23). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the hours component of this date, according to local time. + + The number of hours since midnight (0-23). + The number of minutes since the hour (0-59). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the hours component of this date, according to local time. + + The number of hours since midnight (0-23). + The number of minutes since the hour (0-59). + The number of seconds since the minute (0-59). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the hours component of this date, according to local time. + + The number of hours since midnight (0-23). + The number of minutes since the hour (0-59). + The number of seconds since the minute (0-59). + The number of milliseconds since the second (0-999). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the minutes component of this date, according to local time. + + The number of minutes since the hour (0-59). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the minutes component of this date, according to local time. + + The number of minutes since the hour (0-59). + The number of seconds since the minute (0-59). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the minutes component of this date, according to local time. + + The number of minutes since the hour (0-59). + The number of seconds since the minute (0-59). + The number of milliseconds since the second (0-999). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the seconds component of this date, according to local time. + + The number of seconds since the minute (0-59). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the seconds component of this date, according to local time. + + The number of seconds since the minute (0-59). + The number of milliseconds since the second (0-999). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the milliseconds component of this date, according to local time. + + The number of milliseconds since the second (0-999). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the full year (4 digits for 4-digit years) of this date, according to universal time. + + The 4 digit year. + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the full year (4 digits for 4-digit years) of this date, according to universal time. + + The 4 digit year. + The month (0-11). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the full year (4 digits for 4-digit years) of this date, according to universal time. + + The 4 digit year. + The month (0-11). + The day of the month (1-31). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the month of this date, according to universal time. + + The month (0-11). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the month of this date, according to universal time. + + The month (0-11). + The day of the month (1-31). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the day of this date, according to universal time. + + The day of the month (1-31). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the hours component of this date, according to universal time. + + The number of hours since midnight (0-23). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the hours component of this date, according to universal time. + + The number of hours since midnight (0-23). + The number of minutes since the hour (0-59). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the hours component of this date, according to universal time. + + The number of hours since midnight (0-23). + The number of minutes since the hour (0-59). + The number of seconds since the minute (0-59). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the hours component of this date, according to universal time. + + The number of hours since midnight (0-23). + The number of minutes since the hour (0-59). + The number of seconds since the minute (0-59). + The number of milliseconds since the second (0-999). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the minutes component of this date, according to universal time. + + The number of minutes since the hour (0-59). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the minutes component of this date, according to universal time. + + The number of minutes since the hour (0-59). + The number of seconds since the minute (0-59). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the minutes component of this date, according to universal time. + + The number of minutes since the hour (0-59). + The number of seconds since the minute (0-59). + The number of milliseconds since the second (0-999). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the seconds component of this date, according to universal time. + + The number of seconds since the minute (0-59). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the seconds component of this date, according to universal time. + + The number of seconds since the minute (0-59). + The number of milliseconds since the second (0-999). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the milliseconds component of this date, according to universal time. + + The number of milliseconds since the second (0-999). + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Sets the date and time value of ths date. + + The number of milliseconds since January 1, 1970, 00:00:00 UTC. + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Returns the date as a string. + + The date as a string. + + + + Returns the date as a string using GMT (Greenwich Mean Time). + + The date as a string. + + + + Returns the date as a string using GMT (Greenwich Mean Time). + + The date as a string. + + + + Used by the JSON.stringify to transform objects prior to serialization. + + The object that is being operated on. + Unused. + The date as a serializable string. + + + + Returns the date as a string using the current locale settings. + + + + + + Returns the date and time as a string using the current locale settings. + + + + + + Returns the time as a string using the current locale settings. + + + + + + Returns a string representing the date and time. + + The object that is being operated on. + A string representing the date and time. + + + + Returns the time as a string. + + + + + + Returns the date as a string using UTC (universal time). + + + + + + Returns the primitive value of this object. + + The primitive value of this object. + + + + Returns a primitive value that represents the current object. Used by the addition and + equality operators. + + The current script environment. + The object to operate on. + Specifies the conversion behaviour. Must be "default", "string" or "number". + + + + + Returns the current date and time as the number of milliseconds elapsed since January 1, + 1970, 00:00:00 UTC. + + The current date and time as the number of milliseconds elapsed since January 1, + 1970, 00:00:00 UTC. + + + + Given the components of a UTC date, returns the number of milliseconds since January 1, + 1970, 00:00:00 UTC to that date. + + The full year. + The month as an integer between 0 and 11 (january to december). + The day of the month, from 1 to 31. Defaults to 1. + The number of hours since midnight, from 0 to 23. Defaults to 0. + The number of minutes, from 0 to 59. Defaults to 0. + The number of seconds, from 0 to 59. Defaults to 0. + The number of milliseconds, from 0 to 999. Defaults to 0. + The number of milliseconds since January 1, 1970, 00:00:00 UTC to the given + date. + + This method differs from the Date constructor in two ways: + 1. The date components are specified in UTC time rather than local time. + 2. A number is returned instead of a Date instance. + + If any of the parameters are out of range, then the other values are modified accordingly. + + + + + Parses a string representation of a date, and returns the number of milliseconds since + January 1, 1970, 00:00:00 UTC. + + A string representing a date, expressed in RFC 1123 format. + + + + Gets a single component of this date. + + The date component to extract. + Indicates whether to retrieve the component in local + or universal time. + The date component value, or NaN if the date is invalid. + + + + Sets one or more components of this date. + + The first date component to set. + Indicates whether to set the component(s) in local + or universal time. + One or more date component values. + The number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC for + the new date. + + + + Converts a .NET date into a javascript date. + + The .NET date. + The number of milliseconds since January 1, 1970, 00:00:00 UTC + + + + Converts a javascript date into a .NET date. + + The number of milliseconds since January 1, 1970, 00:00:00 UTC. + The equivalent .NET date. + + + + Given the components of a date, returns the equivalent .NET date. + + The full year. + The month as an integer between 0 and 11 (january to december). + The day of the month, from 1 to 31. Defaults to 1. + The number of hours since midnight, from 0 to 23. Defaults to 0. + The number of minutes, from 0 to 59. Defaults to 0. + The number of seconds, from 0 to 59. Defaults to 0. + The number of milliseconds, from 0 to 999. Defaults to 0. + Indicates whether the components are in UTC or local time. + The equivalent .NET date. + + + + Gets the current time and date. + + The current time and date. + + + + Returns a string of the form "GMT+1200 (New Zealand Standard Time)". + + The date to get the time zone information from. + A string of the form "GMT+1200 (New Zealand Standard Time)". + + + + Parses a javascript date string. + + + + + Parses a javascript date string. + + The string to parse as a date. + A date. + + + + Parses an unstructured javascript date string. + + The string to parse as a date. + A date. + + + + Converts a timezone string to a timezone offset. + + The timezone string e.g. "+1300", "+13", "-1". + The timezone offset, in minutes. e.g. +1200 will return 12*60=700. + Indicates whether parsing was successful. + + + + Constructs a HashSet containing the names of days of the week. + + + + + Constructs a dictionary containing the names of all the months and a mapping to the + number of the month (1-12). + + + + + Constructs a dictionary containing the names of all the time zones and a mapping to the + time zone offset (in hours). + + + + + Represents a constructor for one of the error types: Error, RangeError, SyntaxError, etc. + + + + + Creates a new derived error function. + + The next object in the prototype chain. + The type of error, e.g. Error, RangeError, etc. + + + + Called when the Error object is invoked like a function, e.g. var x = Error("oh no"). + Creates a new derived error instance with the given message. + + A description of the error. + + + + Creates a new derived error instance with the given message. + + A description of the error. + + + + Represents the base class of all the javascript errors. + + + + + Creates a new Error instance with the given message. + + The next object in the prototype chain. + The initial value of the message property. Pass null to + avoid creating this property. + + + + Creates the Error prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + The type of error, e.g. Error, RangeError, etc. + + + + Determine the prototype for the given error type. + + The script engine associated with this object. + The type of error, e.g. Error, RangeError, etc. + The prototype. + + + + Gets the name for the type of error. + + + + + Gets a human-readable description of the error. + + + + + Gets the stack trace. Note that this is populated when the object is thrown, NOT when + it is initialized. + + + + + Sets the stack trace information. + + The path of the javascript source file that is currently executing. + The name of the currently executing function. + The line number of the statement that is currently executing. + + + + Returns a string representing the current object. + + The current script environment. + The object that is being operated on. + A string representing the current object. + + + + Used when creating an error to specify the specific type of error. + + + + + Represents a generic error. + + + + + Indicates a value that is not in the set or range of allowable values. + + + + + Indicates the actual type of an operand is different than the expected type. + + + + + Indicates that a parsing error has occurred. + + + + + Indicates that one of the global URI handling functions was used in a way that is incompatible with its definition. + + + + + Not used. + + + + + Indicate that an invalid reference value has been detected. + + + + + Represents a set of commands for working with the standard console. This class is + non-standard - it is based on the Firebug console API + (http://getfirebug.com/wiki/index.php/Console_API). + + + + + Creates a new FirebugConsole instance. + + The associated script engine. + + + + Gets or sets the console to output to. + + + + + Logs a message to the console. The objects provided will be converted to strings then + joined together in a space separated line. The first parameter can be a string + containing the following patterns: + %s String + %d, %i Integer + %f Floating point number + + The items to format. + + + + Logs a message to the console. The objects provided will be converted to strings then + joined together in a space separated line. The first parameter can be a string + containing the following patterns: + %s String + %d, %i Integer + %f Floating point number + + The items to format. + + + + Logs a message to the console using a style suggesting informational content. The + objects provided will be converted to strings then joined together in a space separated + line. The first parameter can be a string containing the following patterns: + %s String + %d, %i Integer + %f Floating point number + + The items to format. + + + + Logs a message to the console using a style suggesting a warning. The objects provided + will be converted to strings then joined together in a space separated line. The first + parameter can be a string containing the following patterns: + %s String + %d, %i Integer + %f Floating point number + + The items to format. + + + + Logs a message to the console using a style suggesting an error. The objects provided + will be converted to strings then joined together in a space separated line. The + first parameter can be a string containing the following patterns: + %s String + %d, %i Integer + %f Floating point number + + The items to format. + + + + Tests that an expression is true. If not, it will write a message to the console. + + The expression to test. + The items to format. + + + + Clears the console. + + + + + Writes a message to the console and opens a nested block to indent all future messages + sent to the console. Call console.groupEnd() to close the block. + + The items to format. + + + + Writes a message to the console and opens a nested block to indent all future messages + sent to the console. Call console.groupEnd() to close the block. + + The items to format. + + + + Closes the most recently opened block created by a call to console.group(). + + + + + Creates a new timer under the given name. Call console.timeEnd(name) with the same name + to stop the timer and print the time elapsed. + + The name of the time to create. + + + + Stops a timer created by a call to console.time(name) and writes the time elapsed. + + The name of the timer to stop. + + + + Logs a message to the console. The objects provided will be converted to strings then + joined together in a space separated line. The first parameter can be a string + containing the following patterns: + %s String + %d, %i Integer + %f Floating point number + + The style of the message (this determines the icon and text + color). + The items to format. + + + + Formats a message. The objects provided will be converted to strings then + joined together in a space separated line. The first parameter can be a string + containing the following patterns: + %s String + %d, %i Integer + %f Floating point number + %o Object hyperlink + + The items to format. + A formatted string. + + + + Formats a message. The objects provided will be converted to strings then + joined together in a space separated line. The first parameter can be a string + containing the following patterns: + %s String + %d, %i Integer + %f Floating point number + %o Object hyperlink + + The items to format. + An array containing formatted strings interspersed with objects. + + + + Indicates the level of severity. + + + + + Log text, without any indication of the severity. + + + + + Log informational text. + + + + + Log warnings. + + + + + Log errors. + + + + + Represents the target of any Firebug console commands. + + + + + Logs a message to the console. + + The style of the message (this determines the icon and text + color). + The objects to output to the console. These can be strings or + ObjectInstances. + + + + Clears the console. + + + + + Starts grouping messages together. + + The title for the group. + true if subsequent messages should be hidden by default. + + + + Ends the most recently started group. + + + + + Represents an implementation of the Firebug API using the standard console. + + + + + Gets or sets the number of spaces to output before writing any text to the console. + + + + + Gets or sets the number of spaces to add to the identation when group() is called. + + + + + Logs a message to the console. + + A style which influences the icon and text color. + The objects to output to the console. These can be strings or + ObjectInstances. + + + + Clears the console. + + + + + Starts grouping messages together. + + The title for the group. + true if subsequent messages should be hidden by default. + + + + Ends the most recently started group. + + + + + Represents an arguments object. + + + + + Creates a new Arguments instance. + + The next object in the prototype chain. + The function that was called. + The bindings to allow modification. + The argument values that were passed to the function. + + + + Used to retrieve the value of an argument. + + The script engine, this value, etc. + The arguments that were passed to the function. + The result of calling the method. + + + + Used to set the value of an argument. + + The script engine, this value, etc. + The arguments that were passed to the function. + The result of calling the method. + + + + Deletes the property with the given array index. + + The array index of the property to delete. + true to throw an exception if the property could not + be set because the property was marked as non-configurable. + true if the property was successfully deleted, or if the property did + not exist; false if the property was marked as non-configurable and + was false. + + + + Returns an iterator that iterates over the argument values. + + An iterator for the arguments instance. + + + + Represents a function that has bound arguments. + + + + + Creates a new instance of a user-defined function. + + The function that was bound. + The value of the "this" parameter when the target function is called. + Zero or more bound argument values. + + + + Gets the function that is being bound. + + + + + Gets the value of the "this" parameter when the target function is called. + + + + + Gets an array of zero or more bound argument values. + + + + + Determines whether the given object inherits from this function. More precisely, it + checks whether the prototype chain of the object contains the prototype property of + this function. Used by the "instanceof" operator. + + The instance to check. + true if the object inherits from this function; false + otherwise. + + + + Calls this function, passing in the given "this" value and zero or more arguments. + + The value of the "this" keyword within the function. + An array of argument values to pass to the function. + The value that was returned from the function. + + + + Creates an object, using this function as the constructor. + + The value of 'new.target'. + An array of argument values to pass to the function. + The object that was created. + + + + Returns a string representing this object. + + A string representing this object. + + + + Represents a JS class, which is really just a special type of function. Classes cannot be + called directly, but they can be instantiated using the 'new' operator. + + + + + Creates a new instance of a user-defined class. + + The next object in the prototype chain. + The name of the class. Can be null if none were supplied. + The value of the 'prototype' property. + A function that represents the constructor, if the class has + one, or null otherwise. + + A class that doesn't extend looks like this: + new ClassFunction(engine.Function.InstancePrototype, name, engine.Object.Construct(), constructor) + + A class that extends A looks like this: + new ClassFunction(A, name, ObjectInstance.CreateRawObject(A.InstancePrototype), constructor) + + A class that extends null looks like this: + new ClassFunction(engine.Function.InstancePrototype, name, ObjectInstance.CreateRawObject(null), constructor) + + + + + Calls this function, passing in the given "this" value and zero or more arguments. + + The value of the "this" keyword within the function. + An array of argument values to pass to the function. + The value that was returned from the function. + + + + Creates an object, using this function as the constructor. + + The value of 'new.target'. + An array of argument values. + The object that was created. + + + + Returns a string representing this object. + + A string representing this object. + + + + Represents a JavaScript function implemented by one or more .NET methods. + + + + + Creates a new instance of a built-in constructor function. + + The next object in the prototype chain. + The name of the function. + + + + + Creates a new instance of a function which calls the given delegate. + + The next object in the prototype chain. + The delegate to call. + The name of the function. Pass null to use the name of the + delegate for the function name. + The "typical" number of arguments expected by the function. Pass + -1 to use the number of arguments expected by the delegate. + + + + Creates a new instance of a function which calls one or more provided methods. + + The next object in the prototype chain. + An enumerable collection of methods that logically comprise a + single method group. + The name of the function. Pass null to use the name of the + provided methods for the function name (in this case all the provided methods must have + the same name). + The "typical" number of arguments expected by the function. Pass + -1 to use the maximum of arguments expected by any of the provided methods. + + + + Creates a new instance of a function which calls the given binder. + + The next object in the prototype chain. + An object representing a collection of methods to bind to. + + + + Calls this function, passing in the given "this" value and zero or more arguments. + + The value of the "this" keyword within the function. + An array of argument values. + The value that was returned from the function. + + + + Creates an object, using this function as the constructor. + + The value of 'new.target'. + An array of argument values. + The object that was created. + + + + A binder that merely returns undefined. + + + + + Creates a new EmptyBinder instance. + + + + + Gets the name of the target methods. + + + + + Gets the full name of the target methods, including the type name. + + + + + Generates a method that does type conversion and calls the bound method. + + The ILGenerator used to output the body of the method. + The number of arguments that will be passed to the delegate. + A delegate that does type conversion and calls the method represented by this + object. + + + + Represents a function that is implemented with a .NET static method. + Faster, but less flexible version of ClrFunction. Now used by all the built-in constructors and functions. + + + + + Creates a function which calls a .NET method, with no name or length. + + The next object in the prototype chain. + The delegate to call when calling the JS method. + + + + Creates a new instance of a function which calls a .NET method. The prototype of the + new function is set to the default function prototype. + + The script engine. + The name of the function. + The "typical" number of arguments expected by the function. + The delegate to call when calling the JS method. + + + + Creates a new instance of a function which calls a .NET method. + + The next object in the prototype chain. + The name of the function. + The "typical" number of arguments expected by the function. + The delegate to call when calling the JS method. + + + + Creates a new constructor function. + + The next object in the prototype chain. + The delegate to call when calling the JS method as a constructor. + The delegate to call when function is called. + + + + Adds properties needed by the function to the list of properties. + + The list of properties to add to. + The name of the function. + The "typical" number of arguments expected by the function. + The value of the "prototype" property. + + + + Creates a new constructor function. + + The next object in the prototype chain. + The name of the function. + The "typical" number of arguments expected by the function. + The value of the "prototype" property. + The delegate to call when calling the JS method as a constructor. + The delegate to call when function is called. + + + + Calls this function, passing in the given "this" value and zero or more arguments. + + The value of the "this" keyword within the function. + An array of argument values. + The value that was returned from the function. + + + + Indicates whether the 'new' operator can be used on this function. + Will be false for built-in functions like Math.max. + + + + + Creates an object, using this function as the constructor. + + The value of 'new.target'. + An array of argument values. + The object that was created. + + + + Represents the built-in JavaScript Function object. + + + + + Creates a new Function object. + + The next object in the prototype chain. + The prototype for instances created by this function. + + + + Called when the Function object is invoked like a function, e.g. var x = Function("5"). + Creates a new function instance. + + The argument names plus the function body. + A new function instance. + + + + Creates a new function instance. + + The argument names plus the function body. + A new function instance. + + + + Represents a JavaScript function. + + + + + Creates a new instance of a built-in function object, with the default Function + prototype. + + The associated script engine. + + + + Creates a new instance of a built-in function object. + + The next object in the prototype chain. + + + + Creates a new instance of a built-in function object. + + The associated script engine. + The next object in the prototype chain. Can be null. + + + + Initializes the prototype properties. + + The object to set the properties on. + A reference to the constructor that owns the prototype. + + + + Gets the prototype of objects constructed using this function. Equivalent to + the Function.prototype property. + + + + + Gets the name of the function. + + + + + Gets the number of arguments expected by the function. + + + + + Determines whether the given object inherits from this function. More precisely, it + checks whether the prototype chain of the object contains the prototype property of + this function. Used by the "instanceof" operator. + + The instance to check. + true if the object inherits from this function; false + otherwise. + + + + Calls this function, passing in the given "this" value and zero or more arguments. + + The value of the "this" keyword within the function. + An array of argument values. + The value that was returned from the function. + + + + Calls this function, passing in the given "this" value and zero or more arguments. + + The name of the caller function. + The value of the "this" keyword within the function. + An array of argument values. + The value that was returned from the function. + + + + Calls this function, passing in the given "this" value and zero or more arguments. + + The path of the javascript source file that contains the caller. + The name of the caller function. + The line number of the statement that is calling this function. + The value of the "this" keyword within the function. + An array of argument values. + The value that was returned from the function. + + + + Indicates whether the 'new' operator can be used on this function. + Will be false for built-in functions like Math.max. + + + + + Creates an object, using this function as the constructor. + + The value of 'new.target'. + An array of argument values. + The object that was created. + + + + Creates an object, using this function as the constructor. + + The path of the javascript source file that contains the caller. + The name of the caller function. + The line number of the statement that is calling this function. + The value of 'new.target'. + An array of argument values. + The object that was created. + + + + Calls the function, passing in parameters from the given array. + + The value of this in the context of the function. + The arguments passed to the function, as an array. + The result from the function call. + + + + Calls the function. + + The value of this in the context of the function. + Any number of arguments that will be passed to the function. + The result from the function call. + + + + Creates a new function that, when called, calls this function with the given "this" + value and, optionally, one or more more arguments. + + The fixed value of "this". + Any number of fixed arguments values. + A new function. + + + + Returns a string representing this object. + + A string representing this object. + + + + Returns a string representing this object. + + A string representing this object. + + + + Represents a JavaScript function that throws a type error. + + + + + Creates a new ThrowTypeErrorFunction instance. + + The next object in the prototype chain. + + + + Creates a new ThrowTypeErrorFunction instance. + + The next object in the prototype chain. + The TypeError message. + + + + Calls this function, passing in the given "this" value and zero or more arguments. + + The value of the "this" keyword within the function. + An array of argument values to pass to the function. + The value that was returned from the function. + + + + Represents a JavaScript function implemented in javascript. + + + + + Creates a new instance of a user-defined function. + + The next object in the prototype chain. + The name of the function. + A comma-separated list of arguments. + The source code for the body of the function. + This is used by new Function(). + + + + Creates a new instance of a user-defined function. + + The next object in the prototype chain. + The name of the function. + The names of the arguments. + The scope at the point the function is declared. + The source code for the function body. + A delegate which represents the body of the function. + true if the function body is strict mode; false otherwise. + This is used by arguments. + + + + Creates a new instance of a user-defined function. + + The next object in the prototype chain. + The name of the function. + The names of the arguments. + The scope at the point the function is declared. + The source code for the function body. + A delegate which represents the body of the function plus any dependencies. + true if the function body is strict mode; false otherwise. + A reference to the containing class prototype or object literal (or null). + This is used by functions declared in JavaScript code (including getters and setters). + + + + Initializes the object properties. + + The name of the function. + The expected number of arguments. + + + + A comma-separated list of arguments. + + + + + Gets a list containing the names of the function arguments, in order of definition. + This list can contain duplicate names. + + + + + Gets a value that indicates whether the function was declared within strict mode code + -or- the function contains a strict mode directive within the function body. + + + + + Gets the scope at the point the function was declared. + + + + + Gets the source code for the body of the function. + + + + + Gets the body of the method in the form of disassembled IL code. Will be null + unless was set to true. + + + + + Gets a reference to the generated method. For internal use only. + + + + + Gets a reference to the generated method. For internal use only. + + + + + A reference to the containing class prototype or object literal (or null). Used + by the 'super' property accessor. + + + + + Calls this function, passing in the given "this" value and zero or more arguments. + + The value of the "this" keyword within the function. + An array of argument values to pass to the function. + The value that was returned from the function. + + + + Creates an object, using this function as the constructor. + + The value of 'new.target'. + An array of argument values. + The object that was created. + + + + Returns a string representing this object. + + A string representing this object. + + + + Represents functions and properties within the global scope. + + + + + Creates a new Global object. + + The next object in the prototype chain. + + + + Retrieves a list of properties to apply to the global object. + + + + + Decodes a string that was encoded with the encodeURI function. + + The current script environment. + The associated script engine. + The string, as it was before encoding. + + + + Decodes a string that was encoded with the decodeURIComponent function. + + The associated script engine. + The string to decode. + The string, as it was before encoding. + + + + Encodes a string containing a Uniform Resource Identifier (URI). + + The associated script engine. + The string to encode. + A copy of the given URI with the special characters encoded. + + + + Encodes a string containing a portion of a Uniform Resource Identifier (URI). + + The associated script engine. + The string to encode. + A copy of the given URI with the special characters encoded. + + + + Encodes a string using an encoding similar to that used in URLs. + + The string to encode. + A copy of the given string with the special characters encoded. + + + + Evaluates the given javascript source code and returns the result. + + The associated script engine. + The source code to evaluate. + The value of the last statement that was executed, or undefined if + there were no executed statements. + + + + Evaluates the given javascript source code and returns the result. + + The associated script engine. + The source code to evaluate. + The containing scope. + The value of the "this" keyword in the containing scope. + Indicates whether the eval statement is being called from + strict mode code. + The value of the last statement that was executed, or undefined if + there were no executed statements. + + + + Determines whether the given number is finite. + + The number to test. + false if the number is NaN or positive or negative infinity, + true otherwise. + + + + Determines whether the given number is NaN. + + The number to test. + true if the number is NaN, false otherwise. + + + + Decodes a string that has been encoded using escape(). + + The string to decode. + A copy of the given string with the escape sequences decoded. + + + + Decodes a string containing a URI or a portion of a URI. + + The script engine used to create the error objects. + The string to decode. + A string containing the set of characters that should not + be escaped. Alphanumeric characters should not be included. + A copy of the given string with the escape sequences decoded. + + + + Encodes a string containing a URI or a portion of a URI. + + The associated script engine. + The string to encode. + An array containing the set of characters that should not + be escaped. + A copy of the given URI with the special characters encoded. + + + + Reads an integer value using the given reader. + + The reader to read characters from. + Upon returning, contains the number of digits that were read. + The numeric value, or double.NaN if no number was present. + + + + Determines if the given character is whitespace or a line terminator. + + The unicode code point for the character. + true if the character is whitespace or a line terminator; false + otherwise. + + + + Parses a hexidecimal number from within a string. + + The string containing the hexidecimal number. + The start index of the hexidecimal number. + The number of characters in the hexidecimal number. + The numeric value of the hexidecimal number, or -1 if the number + is not valid. + + + + Creates a 128 entry lookup table for the characters in the given string. + + The characters to include in the set. + An array containing true for each character in the set. + + + + Represents a general iterator. + + + + + Creates a new iterator. + + The script environment. + The enumerable to iterate over. + + + + Creates the array iterator prototype object. + + The script environment. + + + + The tag value that is used by the base implementation of toString(). + + + + + Returns this iterator. + + An iterator. + + + + Moves the iterator to the next element in the array. + + An object containing two properies: value and done. + + + + Converts JSON text into a series of tokens. + + + + + Creates a JSONLexer instance with the given source of text. + + The script engine used to create error objects. + A reader that will supply the JSON source text. + + + + Gets the reader that was supplied to the constructor. + + + + + Reads the next token from the reader. + + A token, or null if there are no more tokens. + + + + Reads an keyword token. + + The first character of the identifier. + An keyword token. + + + + Reads a numeric literal token. + + The first character of the token. + A numeric literal token. + + + + Reads an integer value. + + The initial value, derived from the first character. + The number of digits that were read from the stream. + The numeric value, or double.NaN if no number was present. + + + + Reads a string literal. + + The first character of the string literal. + A string literal. + + + + Reads a hexidecimal number with the given number of digits and turns it into a character. + + The character corresponding to the escape sequence, or the content that was read + from the input if a valid hex number was not read. + + + + Reads past whitespace. + + Always returns null. + + + + Determines if the given character is whitespace or a line terminator. + + The character to test. + true if the character is whitespace or a line terminator; false + otherwise. + + + + Determines if the given character is valid as a character of an identifier. + + The character to test. + true if the character is is valid as a character of an identifier; + false otherwise. + + + + Determines if the given character is valid as the first character of a numeric literal. + + The character to test. + true if the character is is valid as the first character of a numeric + literal; false otherwise. + + + + Determines if the given character is valid in a hexidecimal number. + + The character to test. + true if the given character is valid in a hexidecimal number; false + otherwise. + + + + Represents the built-in JSON object. + + + + + Creates a new JSON object. + + The next object in the prototype chain. + + + + Parses the JSON source text and transforms it into a value. + + The current script environment. + The JSON text to parse. + A function that will be called for each value. + The value of the JSON text. + + + + Serializes a value into a JSON string. + + The current script environment. + The value to serialize. + Either a function that can transform each value before it is + serialized, or an array of the names of the properties to serialize. + Either the number of spaces to use for indentation, or a string + that is used for indentation. + The JSON string representing the value. + + + + Converts a series of JSON tokens into a JSON object. + + + + + Creates a JSONParser instance with the given lexer supplying the tokens. + + The associated script engine. + The lexical analyser that provides the tokens. + + + + Gets or sets a function that can be used to transform values as they are being parsed. + + + + + Discards the current token and reads the next one. + + + + + Indicates that the next token is identical to the given one. Throws an exception if + this is not the case. Consumes the token. + + The expected token. + + + + Indicates that the next token should be an identifier. Throws an exception if this is + not the case. Consumes the token. + + The identifier name. + + + + Parses the JSON text (optionally applying the reviver function) and returns the resulting value. + + The result of parsing the JSON text. + + + + Parses a value. + + A JSON value. + + + + Parses an array literal (e.g. "[1, 2]"). + + A populated array. + + + + Parses an object literal (e.g. "{a: 5}"). + + A populated object. + + + + Converts a value into JSON text. + + + + + Creates a new JSONSerializer instance with the default options. + + The associated script engine. + + + + Gets or sets a function which can transform values before they are serialized. + + + + + Gets or sets a string to use for indentation. + + + + + Gets or sets a list of property names to be serialized. + + + + + Serializes a value into a JSON string. + + The value to serialize. + The JSON repesentation of the value, or null if passed an + unserializable value (like a function). + + + + Transforms the value stored in the given object using toJSON and/or the replacer function. + + The object containing the value. + The name of the property holding the value to transform. + The transformed value. + + + + Transforms the value stored in the given object using toJSON and/or the replacer function. + + The object containing the value. + The array index of the property holding the value to transform. + The transformed value. + + + + Serializes a value into a JSON string. Does not serialize "undefined", check for that + value before calling this method. + + The value to serialize. + The StringBuilder to write the JSON representation of the + value to. + + + + Adds double quote characters to the start and end of the given string and converts any + invalid characters into escape sequences. + + The string to quote. + The StringBuilder to write the quoted string to. + + + + Serializes an object into a JSON string. + + The object to serialize. + The StringBuilder to write the JSON representation of the + object to. + + + + Serializes an array into a JSON string. + + The array to serialize. + The StringBuilder to write the JSON representation of the + array to. + + + + The Map object is a simple key/value map. Any value (both objects and primitive values) may + be used as either a key or a value. + + + + + Creates a new map constructor. + + The next object in the prototype chain. + + + + A reference to the constructor function that is used to create derived objects. + + + + + Called when the Map object is invoked like a function, e.g. var x = Map(). + Throws an error. + + + + + Creates a new Map. + + iterable is an Array or other iterable object whose elements + are key-value pairs (2-element Arrays). Each key-value pair is added to the new Map. + null is treated as undefined. + A new Map object, either empty or initialised with the given values. + + + + The Map object is a simple key/value map. Any value (both objects and primitive values) may + be used as either a key or a value. + + + + + Creates a new Map instance. + + The next object in the prototype chain. + + + + Creates the Map prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + Called before a linked list node is deleted. + + + + + Gets the internal storage. Used by debugger decoration only. + + + + + The number of elements in the Map. + + + + + Removes all elements from a Map object. + + + + + Removes the specified element from a Map object. + + The key of the element to remove from the Map object. + true if an element in the Map object existed and has been removed, or + false if the element does not exist. + + + + Returns a new Iterator object that contains the [key, value] pairs for each element in + the Map object in insertion order. + + A new Iterator object. + + + + Executes a provided function once per each key/value pair in the Map object, in + insertion order. + + Function to execute for each element. + Value to use as this when executing callback. + + + + Returns a specified element from a Map object. + + The key of the element to return from the Map object. + The element associated with the specified key, or undefined if the key can't + be found in the Map object. + + + + Returns a boolean indicating whether an element with the specified key exists or not. + + The key of the element to test for presence in the Map object. + true if an element with the specified key exists in the Map object; + otherwise false. + + + + Returns a new Iterator object that contains the keys for each element in the Map object + in insertion order. + + A new Iterator object. + + + + Adds a new element with a specified key and value to a Map object. + + The key of the element to add to the Map object. + The value of the element to add to the Map object. + The Map object. + + + + Returns a new Iterator object that contains the values for each element in the Map + object in insertion order. + + A new Iterator object. + + + + Implements the SameValueZero comparison operation. + + + + + Represents an iteration over a Map. + + + + + Creates a new map iterator. + + The next object in the prototype chain. + The map to iterate over. + The linked list to iterate over. + The type of values to return. + + + + Creates the array iterator prototype object. + + The script environment. + + + + Called before a linked list node is deleted. + + The node that is being deleted. + + + + The tag value that is used by the base implementation of toString(). + + + + + Moves the iterator to the next element in the array. + + An object containing two properies: value and done. + + + + Gets wheter the end is reached. Used by debugger decoration only. + + + + + Gets current index. Used by debugger decoration only. + + + + + Gets what is iterated - key, value or both + + + + + Gets the iterated Map + + + + + Represents the built-in Math class that has mathematical constants and functions. + + + + + Creates a new Math object. + + The next object in the prototype chain. + + + + The mathematical constant E, approximately 2.718. + + + + + The natural logarithm of 2, approximately 0.693. + + + + + The natural logarithm of 10, approximately 2.303. + + + + + The base 2 logarithm of E, approximately 1.442. + + + + + The base 10 logarithm of E, approximately 0.434. + + + + + The ratio of the circumference of a circle to its diameter, approximately 3.14159. + + + + + The square root of 0.5, approximately 0.707. + + + + + The square root of 2, approximately 1.414. + + + + + Returns the absolute value of a number. + + The number to operate on. + The absolute value of the parameter. + + + + Returns the arccosine of a number. + + The number to operate on. + The arccosine of the parameter. If + is less than -1 or greater than 1, then NaN is + returned. + + + + Returns the arcsine of a number. + + The number to operate on. + The arcsine of the parameter. If + is less than -1 or greater than 1, then NaN is + returned. + + + + Returns the arctangent of a number. + + The number to operate on. + The arctangent of the parameter. If + is less than -1 or greater than 1, then NaN is + returned. + + + + Returns the counter-clockwise angle (in radians) from the X axis to the point (x,y). + + A numeric expression representing the cartesian x-coordinate. + A numeric expression representing the cartesian y-coordinate. + The angle (in radians) from the X axis to a point (x,y) (between -pi and pi). + + + + Returns the smallest integer greater than or equal to a number. + + The number to operate on. + The smallest integer greater than or equal to the + parameter. + + + + Returns the cosine of an angle. + + The angle to operate on. + The cosine of the parameter (between -1 and 1). + + + + Returns e (the base of natural logarithms) raised to the specified power. + + The exponent. + E (the base of natural logarithms) raised to the specified power. + + + + Returns the greatest integer less than or equal to a number. + + The number to operate on. + The greatest integer less than or equal to the parameter. + + + + Returns the natural logarithm of a number. + + The number to operate on. + The natural logarithm of the parameter. + + + + Returns the largest of zero or more numbers. + + The numbers to operate on. + The largest of zero or more numbers. If no arguments are provided, the + return value is equal to NEGATIVE_INFINITY. If any of the arguments cannot be + converted to a number, the return value is NaN. + + + + Returns the smallest of zero or more numbers. + + The numbers to operate on. + The smallest of zero or more numbers. If no arguments are provided, the + return value is equal to NEGATIVE_INFINITY. If any of the arguments cannot be + converted to a number, the return value is NaN. + + + + Returns the value of a base expression taken to a specified power. + + The base value of the expression. + The exponent value of the expression. + The value of the base expression taken to the specified power. + + + + Returns a pseudorandom number between 0 and 1. + + A pseudorandom number between 0 and 1. The pseudorandom number generated is + from 0 (inclusive) to 1 (exclusive), that is, the returned number can be zero, but it + will always be less than one. The random number generator is seeded automatically. + + + + + Returns the value of a number rounded to the nearest integer. + + The number to operate on. + The required number argument is the value to be rounded to the nearest + integer. For positive numbers, if the decimal portion of number is 0.5 or greater, + the return value is equal to the smallest integer greater than number. If the decimal + portion is less than 0.5, the return value is the largest integer less than or equal to + number. For negative numbers, if the decimal portion is exactly -0.5, the return value + is the smallest integer that is greater than the number. For example, Math.round(8.5) + returns 9, but Math.round(-8.5) returns -8. + + + + Returns the sine of an angle. + + The angle, in radians. + The sine of the parameter (between -1 and 1). + + + + Returns the square root of a number. + + The number to operate on. + The square root of the parameter. + + + + Returns the tangent of an angle. + + The angle, in radians. + The tangent of the parameter (between -1 and 1). + + + + Returns the base 10 logarithm of a number. + + The number to operate on. + The base 10 logarithm of the parameter. + + + + Returns the base 2 logarithm of a number. + + The number to operate on. + The base 2 logarithm of the parameter. + + + + Returns the natural logarithm (base E) of one plus a number. The result is calculated + in such a way that the result is accurate even if the number is close to zero. + + The number to operate on. + The natural logarithm (base E) of one plus the parameter. + + + + Returns E to the power of a number minus 1. The result is calculated in such a way + that the result is accurate even if the number is close to zero. + + The number to operate on. + E to the power of the parameter minus 1. + + + + Returns the hyperbolic cosine of a number. + + The number to operate on. + The hyperbolic cosine of the parameter. + + + + Returns the hyperbolic sine of a number. + + The number to operate on. + The hyperbolic sine of the parameter. + + + + Returns the hyperbolic tangent of a number. + + The number to operate on. + The hyperbolic tangent of the parameter. + + + + Returns the inverse hyperbolic cosine of a number. + + The number to operate on. + The inverse hyperbolic cosine of the parameter. + + + + Returns the inverse hyperbolic sine of a number. + + The number to operate on. + The inverse hyperbolic sine of the parameter. + + + + Returns the inverse hyperbolic tangent of a number. + + The number to operate on. + The inverse hyperbolic tangent of the parameter. + + + + Returns the square root of the sum of squares of the provided numbers. + + The numbers to operate on. + The square root of the sum of squares of . + + + + Returns the square root of the sum of squares of the provided numbers. + + The first number to operate on. + The second number to operate on. + The square root of the sum of squares of and + . + + + + Returns the integral part of a number, removing any fractional digits. + + The number to operate on. + The integral part of the parameter. + + + + Returns the sign of the x, indicating whether x is positive, negative or zero. + + The number to operate on. + The sign of the parameter. + + + + Returns the result of the 32-bit multiplication of the two parameters. + + The first value to multiply. + The second value to multiply. + The result of multiplying the two numbers as if they were 32-bit integers. + + + + Returns the result of converting the double precision number to the nearest single + precision equivalent. + + The number to operate on. + The result of converting the double precision number to the nearest single + precision equivalent. + + + + Converts the input value to an unsigned 32-bit integer, then returns the number of + leading zero bits. + + The number to operate on. + The number of leading zero bits, treating the input like an unsigned 32-bit + integer. + + + + Returns an approximation to the cube root of the input value. + + The number to operate on. + An approximation to the cube root of the input value. + + + + Represents the built-in javascript Number object. + + + + + Creates a new Number object. + + The next object in the prototype chain. + + + + Called when the Number object is invoked like a function, e.g. var x = Number("5"). + Returns zero. + + + + + Called when the Number object is invoked like a function, e.g. var x = Number("5"). + Converts the given argument into a number value (not a Number object). + + + + + Creates a new Number instance and initializes it to zero. + + + + + Creates a new Number instance and initializes it to the given value. + + The value to initialize to. + + + + The largest representable number, approximately 1.8e+308. + + + + + The smallest positive representable number, approximately 5e-324. + + + + + Special "not a number" value. + + + + + Special value representing negative infinity. + + + + + Special value representing positive infinity. + + + + + The difference between 1 and the smallest value greater than 1 that is representable as + a numeric value. + + + + + The maximum integer within the range of integers that can be represented exactly. + Outside the safe range multiple integers are mapped to a single value. + + + + + The minimum integer within the range of integers that can be represented exactly. + Outside the safe range multiple integers are mapped to a single value. + + + + + Determines whether the given number is finite. + + The number to test. + false if the number is NaN or positive or negative infinity, + true otherwise. false if the value is not a number. + + + + Determines whether the given number is NaN. + + The number to test. + true if the number is NaN, false otherwise. + + + + Determines whether the given number is an integer. + + The number to test. + true if the number is an integer, false otherwise. + + + + Determines whether the given number is within the "safe" integer range. + + The number to test. + true if the number is a safe integer, false otherwise. + + + + Parses the given string and returns the equivalent integer value. + + The associated script engine. + The string to parse. + The numeric base to use for parsing. Pass zero to use base 10 + except when the input string starts with '0' in which case base 16 or base 8 are used + instead (base 8 is only supported in compatibility mode). + The equivalent integer value of the given string. + Leading whitespace is ignored. Parsing continues until the first invalid + character, at which point parsing stops. No error is returned in this case. + + + + Parses the given string and returns the equivalent numeric value. + + The string to parse. + The equivalent numeric value of the given string. + Leading whitespace is ignored. Parsing continues until the first invalid + character, at which point parsing stops. No error is returned in this case. + + + + Represents an instance of the Number object. + + + None of the methods of the Number prototype are generic; they should throw TypeError + if the this value is not a Number object or a number primitive. + + + + + The primitive value. + + + + + Creates a new Number instance and initializes it to the given value. + + The next object in the prototype chain. + The value to initialize to. + + + + Creates the Number prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + Gets the primitive value of the number. + + + + + Returns a string representing a number represented in exponential notation. + + Number of digits after the decimal point. Must be in the + range 0 – 20, inclusive. Defaults to the number of digits necessary to specify the + number. + A string representation of a number in exponential notation. The string + contains one digit before the significand's decimal point, and may contain + fractionDigits digits after it. + + + + Returns a string representing a number in fixed-point notation. + + Number of digits after the decimal point. Must be in the + range 0 – 20, inclusive. + A string representation of a number in fixed-point notation. The string + contains one digit before the significand's decimal point, and must contain + fractionDigits digits after it. + If fractionDigits is not supplied or undefined, the toFixed method assumes the value + is zero. + + + + Returns a string containing a locale-dependant version of the number. + + A string containing a locale-dependant version of the number. + + + + Returns a string containing a number represented either in exponential or fixed-point + notation with a specified number of digits. + + The number of significant digits. Must be in the range 1 – 21, + inclusive. + A string containing a number represented either in exponential or fixed-point + notation with a specified number of digits. + + For numbers in exponential notation, precision - 1 digits are returned after the + decimal point. For numbers in fixed notation, precision significant digits are + returned. + If precision is not supplied or is undefined, the toString method is called instead. + + + + + Returns the textual representation of the number. + + Specifies a radix for converting numeric values to strings. + The textual representation of the number. + + + + Returns the primitive value of the specified object. + + The primitive value of the specified object. + + + + Calculates the number of leading zero bits in the integer representation of this + number. + + The number of leading zero bits in the integer representation of this number. + + + + Counts the number of set bits in an integer. + + The integer. + The number of set bits in the integer. + + + + The base class of the javascript function attributes. + + + + + Creates a new BaseJSFunctionAttribute instance with no flags. + + + + + Creates a new BaseJSFunctionAttribute instance. + + One or more flags. + + + + Gets or sets the flags associated with the function. + + + + + Marks a method as being visible to javascript code. + + + + + Creates a new JSFunctionAttribute instance with no flags. + + + + + Get or sets the name of the function, as exposed to javascript. + + + + + Indicates the function is non-standard. + + + + + Indicates the function is deprecated and should not be used. + + + + + Gets or sets the "typical" number of arguments expected by the function. + + + + + Gets or sets whether the property value is writable. If this flag is not set, + attempting to modify the property will fail. The default value of this property + is true. + + + + + + Gets or sets whether the property should be enumerable (exposed via the + for...in construct) in JavaScript code. The default value of this + property is false. + + + + + + Gets or sets whether the property should be configurable, that is, whether + the property may be changed or have its descriptor changed by JavaScript + code. The default value of this property is true. + + + + + + Marks a method as being visible to javascript code. + Used internally - has different defaults to what you would expect. + + + + + Gets or sets the number of parameters that are required. If the function is called + with fewer than this number of arguments, then a TypeError will be thrown. + + + + + Marks a property as being visible to JavaScript code. + + + + + Creates a new + + + + + Gets or sets the name of the property as exposed to JavaScript code. + + + + + Gets or sets whether the property should be enumerable (exposed via the + for...in construct) in JavaScript code. The default value of this + property is false. + + + + + + Gets or sets whether the property should be configurable, that is, whether + the property may be changed or have its descriptor changed by JavaScript + code. The default value of this property is true. + + + + + + Some built-in objects act like both classes and functions depending on whether the + new operator is used (for example, the Number object acts this way). This + property indicates that the method should be called when an object is called like + a function. + + + + + Indicates that the method should be called when the new keyword is used. + + + + + Marks a field as being visible to javascript code. Currently only const fields + are supported. + + + + + Represents a container for property names and attributes. + + + + + Creates a new HiddenClassSchema instance from a modify or delete operation. + + + + + Creates a new HiddenClassSchema instance from an add operation. + + + + + Creates a hidden class schema with no properties. + + A hidden class schema with no properties. + + + + Gets the number of properties defined in this schema. + + + + + Gets the index into the Values array of the next added property. + + + + + Enumerates the property names for this schema. + + An enumerable collection of property names. + + + + Enumerates the property names and values for this schema. + + The array containing the property values. + An enumerable collection of property names and values. + + + + Gets the zero-based index of the property with the given name. + + The property key (either a string or a Symbol). + The zero-based index of the property, or -1 if a property with the + given name does not exist. + + + + Gets the zero-based index of the property with the given name and the attributes + associated with the property. + + The property key (either a string or a Symbol). + A structure containing the zero-based index of the property, or -1 if a property with the + given name does not exist. + + + + Adds a property to the schema. + + The property key of the property to add. + The property attributes. + A new schema with the extra property. + + + + Adds multiple properties to the schema. + + The properties to add. + A new schema with the extra properties. + + + + Deletes a property from the schema. + + The property key of the property to delete. + A new schema without the property. + + + + Modifies the attributes for a property in the schema. + + The property key of the property to modify. + The new attributes. + A new schema with the modified property. + + + + Creates the properties dictionary. + + + + + A set of flags that controls stub generation. + + + + + No flags were specified. + + + + + The first parameter to the function is the associated ScriptEngine. + + + + + The first (or second, if HasEngineParameter is specified) parameter to the + function is the this value. + + + + + Indicates that the instance object may be modified by the function. + + + + + A return value of null is converted to undefined immediately after control leaves the + method. + + + + + Represents the built-in javascript Object object. + + + + + Creates a new Object object. + + The next object in the prototype chain. + The prototype for instances created by this function. + + + + Creates a new Object instance. + + + + + Converts the given argument to an object. + + The value to convert. + + + + Converts the given argument to an object. + + The value to convert. + + + + Retrieves the next object in the prototype chain for the given object. + + The object to retrieve the prototype from. + The next object in the prototype chain for the given object, or null + if the object has no prototype chain. + + + + Sets the prototype of a specified object to another object or null. + + The object which is to have its prototype set. + The object's new prototype (an object or null). + The specified object. + + + + Gets an object that contains details of the property with the given name. + + The object to retrieve property details for. + The property key (either a string or a Symbol). + An object containing some of the following properties: configurable, + writable, enumerable, value, get and set. + + + + Creates an array containing the names of all the named properties on the object (even + the non-enumerable ones). + + The object to retrieve the property names for. + An array containing property names. + + + + Creates an array containing the symbols of all the symbol-based properties on the + object (even the non-enumerable ones). + + The object to retrieve the property symbols for. + An array containing symbols. + + + + Creates an object with the given prototype and, optionally, a set of properties. + + The script engine. + A reference to the next object in the prototype chain for the + created object. + An object containing one or more property descriptors. + A new object instance. + + + + Assigns enumerable properties of one or more source objects onto a destination object. + + The script engine. + The destination object to copy properties to. + One or more source objects to copy properties from. + A new object instance. + + + + Modifies the value and attributes of a property. + + The object to define the property on. + The property key (either a string or a Symbol). + A property descriptor containing some of the following + properties: configurable, writable, enumerable, value, get and set. + The object with the property. + + + + Modifies multiple properties on an object. + + The object to define the properties on. + An object containing one or more property descriptors. + The object with the properties. + + + + Prevents the addition or deletion of any properties on the given object. + + The object to modify. + The object that was affected. + + + + Prevents the addition, deletion or modification of any properties on the given object. + + The object to modify. + The object that was affected. + + + + Prevents the addition of any properties on the given object. + + The object to modify. + The object that was affected. + + + + Determines if addition or deletion of any properties on the object is allowed. + + The object to check. + true if properties can be added or at least one property can be + deleted; false otherwise. + + + + Determines if addition, deletion or modification of any properties on the object is + allowed. + + The object to check. + true if properties can be added or at least one property can be + deleted or modified; false otherwise. + + + + Determines if addition of properties on the object is allowed. + + The object to check. + true if properties can be added to the object; false otherwise. + + + + Creates an array containing the names of all the enumerable properties on the object. + + The object to retrieve the property names for. + An array containing the names of all the enumerable properties on the object. + + + + Determines whether two values are the same value. Note that this method considers NaN + to be equal with itself and negative zero is considered different from positive zero. + + The first value to compare. + The second value to compare. + true if the values are the same. + + + + Transforms a list of key-value pairs into an object. + + An iterable such as Array or Map. + A new object whose properties are given by the entries of the iterable. + + + + Provides functionality common to all JavaScript objects. + + + + + Indicates whether properties can be added to this object. + + + + + Creates an Object with the default prototype. + + The script engine associated with this object. + + + + Called by derived classes to create a new object instance. + + The next object in the prototype chain. Cannot be null. + + + + Called by derived classes to create a new object instance. + + The script engine associated with this object. + The next object in the prototype chain. Can be null. + + + + Creates an Object with no prototype to serve as the base prototype of all objects. + + The script engine associated with this object. + An Object with no prototype. + + + + Creates an Object instance (use ObjectConstructor.Construct rather than this). + + The next object in the prototype chain. + An Object instance. + + + + Initializes the prototype properties. + + The object to set the properties on. + A reference to the constructor that owns the prototype. + + + + Gets a reference to the script engine associated with this object. + + + + + Gets the next object in the prototype chain. There is no corresponding property in + javascript (it is is *not* the same as the prototype property), instead use + Object.getPrototypeOf(). Returns null for the root object in the prototype + chain. Use to set this value. + + + + + Gets a value that indicates whether the object can have new properties added to it. + Called by Object.isExtensible(). Use to set this value. + + + + + Gets or sets the value of a named property. + + The property key (either a string or a Symbol). + The property value, or if the property doesn't + exist. + + + + Gets or sets the value of an array-indexed property. + + The index of the property to retrieve. + The property value, or if the property doesn't + exist. + + + + Gets or sets the value of an array-indexed property. + + The index of the property to retrieve. + The property value, or if the property doesn't + exist. + + + + Gets an enumerable list of every property name and value associated with this object. + Does not include properties in the prototype chain. + + + + + Gets an enumerable list of every property name associated with this object. + Does not include properties in the prototype chain. + + + + + Sets the next object in the prototype chain. Can be null, which indicates there + are no further objects in the chain. + + The new prototype. + true to throw an exception if the prototype could not + be set. This can happen if the object is non-extensible or if setting the prototype + would introduce a cyclic dependency. + true if the prototype was successfully applied; false otherwise. + + + + Makes this object non-extensible, which means no new properties can be added to it. + + true to throw an exception if the object could not + be made non-extensible. + true if the operation was successful, false otherwise. The + default implementation always returns true. + + + + Determines if a property with the given name exists. + + The property key (either a string or a Symbol). + true if the property exists on this object or in the prototype chain; + false otherwise. + + + + Gets the value of the property with the given array index. + + The array index of the property. + The value of the property, or null if the property doesn't exist. + The prototype chain is searched if the property does not exist directly on + this object. + + + + Gets the value of the property with the given array index. + + The array index of the property. + The value of the "this" keyword inside a getter. + The value of the property, or null if the property doesn't exist. + The prototype chain is searched if the property does not exist directly on + this object. + + + + Gets the value of the property with the given name. + + The property key (either a string or a Symbol). + The value of the property, or null if the property doesn't exist. + The prototype chain is searched if the property does not exist directly on + this object. + + + + Gets the value of the property with the given name. + + The property key (either a string or a Symbol). + The value of the "this" keyword inside a getter. + The value of the property, or null if the property doesn't exist. + The prototype chain is searched if the property does not exist directly on + this object. + + + + Gets the value of the property with the given name. + + The property key (either a string or a Symbol). + Receives the value of the property, or null if the property + doesn't exist. + true if the value exists, false otherwise. + + + + Gets the value of the property with the given name. + + The name of the property. + The value of the property, or if the property + doesn't exist. + The prototype chain is searched if the property does not exist directly on + this object. + + + + Gets the value of the property with the given name. The name cannot be an array index. + + The property key (either a string or a Symbol). Cannot be an array index. + The value of the "this" keyword inside a getter. + The value of the property, or null if the property doesn't exist. + The prototype chain is searched if the property does not exist directly on + this object. + + + + Gets a descriptor for the property with the given array index. + + The array index of the property. + A property descriptor containing the property value and attributes. + The prototype chain is not searched. + + + + Gets a descriptor for the property with the given name. + + The property key (either a string or a Symbol). + A property descriptor containing the property value and attributes. + The prototype chain is not searched. + + + + Returns the function with the given name, if it exists. + + The property key (either a string or a Symbol). Cannot be a number. + The method with the given name, if it exists; otherwise null. + A property exists with the given name, but it's not callable. + + + + Sets the value of the property with the given array index. If a property with the + given index does not exist, or exists in the prototype chain (and is not a setter) then + a new property is created. + + The array index of the property to set. + The value to set the property to. This must be a javascript + primitive (double, string, etc) or a class derived from . + true to throw an exception if the property could not + be set. This can happen if the property is read-only or if the object is sealed. + false if an error occurred. + + + + Sets the value of the property with the given array index. If a property with the + given index does not exist, or exists in the prototype chain (and is not a setter) then + a new property is created. + + The array index of the property to set. + The value to set the property to. This must be a javascript + primitive (double, string, etc) or a class derived from . + The value of the "this" keyword inside a setter. + true to throw an exception if the property could not + be set. This can happen if the property is read-only or if the object is sealed. + false if an error occurred. + + + + Sets the value of the property with the given name. If a property with the given name + does not exist, or exists in the prototype chain (and is not a setter) then a new + property is created. + + The property key of the property to set. + The value to set the property to. This must be a javascript + primitive (double, string, etc) or a class derived from . + true to throw an exception if the property could not + be set (i.e. if the property is read-only or if the object is not extensible and a new + property needs to be created). + false if is false and an error + occurred; true otherwise. + + + + Sets the value of the property with the given name. If a property with the given name + does not exist, or exists in the prototype chain (and is not a setter) then a new + property is created. + + The property key of the property to set. + The value to set the property to. This must be a javascript + primitive (double, string, etc) or a class derived from . + The value of the "this" keyword inside a setter. + true to throw an exception if the property could not + be set (i.e. if the property is read-only or if the object is not extensible and a new + property needs to be created). + false if is false and an error + occurred; true otherwise. + + + + Sets the value of the property with the given name. If a property with the given name + does not exist, or exists in the prototype chain (and is not a setter) then a new + property is created. + + The name of the property to set. + The value to set the property to. This must be a javascript + primitive (double, string, etc) or a class derived from . + true to throw an exception if the property could not + be set (i.e. if the property is read-only or if the object is not extensible and a new + property needs to be created). + false if is false and an error + occurred; true otherwise. + + + + Sets the value of the property with the given name. If a property with the given name + does not exist, or exists in the prototype chain (and is not a setter) then a new + property is created. + + The name of the property to set. + The value to set the property to. This must be a javascript + primitive (double, string, etc) or a class derived from . + The value of the "this" keyword inside a setter. + true to throw an exception if the property could not + be set (i.e. if the property is read-only or if the object is not extensible and a new + property needs to be created). + false if is false and an error + occurred; true otherwise. + + + + Sets the value of the given property. If a property with the given name exists, but + only in the prototype chain, then a new property is created (unless the property is a + setter, in which case the setter is called and no property is created). If the + property does not exist at all, then no property is created and the method returns + false. This method is used to set the value of a variable reference within a + with statement. + + The property key (either a string or a Symbol). Cannot be an array index. + The desired value of the property. This must be a javascript + primitive (double, string, etc) or a class derived from . + The value of the "this" keyword inside a setter. + true to throw an exception if the property could not + be set (i.e. if the property is read-only or if the object is not extensible and a new + property needs to be created). + Set to true if the property value exists; false otherwise. + false if is false and an error + occurred; true otherwise. + + + + Deletes the property with the given array index. + + The array index of the property to delete. + true to throw an exception if the property could not + be set because the property was marked as non-configurable. + true if the property was successfully deleted, or if the property did + not exist; false if the property was marked as non-configurable and + was false. + + + + Deletes the property with the given name. + + The property key of the property to delete. + true to throw an exception if the property could not + be set because the property was marked as non-configurable. + true if the property was successfully deleted, or if the property did + not exist; false if the property was marked as non-configurable and + was false. + + + + Defines or redefines the value and attributes of a property. The prototype chain is + not searched so if the property exists but only in the prototype chain a new property + will be created. + + The property key of the property to modify. + The property value and attributes. + true to throw an exception if the property could not + be set. This can happen if the property is not configurable or the object is sealed. + true if the property was successfully modified; false otherwise. + + + + Checks whether the given descriptor is compatible with the current descriptor. + + Indicates whether the target object is extensible. + The new descriptor. + The descriptor corresponding to the currently existing property. + true if the new descriptor is compatible with the old one; false otherwise. + + + + Adds a property to this object. The property must not already exist. + + The property key of the property to add. + The desired value of the property. This can be a + . + Attributes describing how the property may be modified. + true to throw an exception if the property could not + be added (i.e. if the object is not extensible). + true if the property was successfully added; false otherwise. + + + + Sets a property value and attributes, or adds a new property if it doesn't already + exist. Any existing attributes are ignored (and not modified). + + The property key (either a string or a Symbol). + The intended value of the property. + Attributes that indicate whether the property is writable, + configurable and enumerable. + Indicates whether to overwrite any existing attributes. + + + + Sets up multiple properties at once. Can only be called on an empty object. + + The list of properties to set. + + + + Initializes a property to be undefined, if the property doesn't exist. + If it does exist, then this method does nothing. + + The property key of the property. + The attributes of the new property, if it doesn't exist. + + + + Returns a primitive value that represents the current object. Used by the addition and + equality operators. + + Indicates the preferred type of the result. + A primitive value that represents the current object. + + + + Returns a primitive value that represents the current object, without using the + @@toPrimitive symbol. + + Indicates the preferred type of the result. + A primitive value that represents the current object. + + + + Calls the function with the given name. The function must exist on this object or an + exception will be thrown. + + The name of the function to call (or a symbol). + The parameters to pass to the function. + The result of calling the function. + + + + Calls the function with the given name. + + The result of calling the function. + The name or symbol of the function to call. + The parameters to pass to the function. + true if the function was called successfully; false otherwise. + + + + Returns a string representing this object. + + A string representing this object. + + + + Determines if a property with the given name exists on this object. + + The associated script engine. + The object that is being operated on. + The property key (either a string or a Symbol). + true if a property with the given name exists on this object, + false otherwise. + Objects in the prototype chain are not considered. + + + + Determines if this object is in the prototype chain of the given object. + + The associated script engine. + The object that is being operated on. + The object to check. + true if this object is in the prototype chain of the given object; + false otherwise. + + + + Determines if a property with the given name exists on this object and is enumerable. + + The associated script engine. + The object that is being operated on. + The property key (either a string or a Symbol). + true if a property with the given name exists on this object and is + enumerable, false otherwise. + Objects in the prototype chain are not considered. + + + + Returns a locale-dependant string representing the current object. + + Returns a locale-dependant string representing the current object. + + + + Returns a primitive value associated with the object. + + A primitive value associated with the object. + + + + Returns a string representing the current object. + + The current script environment. + The value of the "this" keyword. + A string representing the current object. + + + + Populates the object with functions by searching a .NET type for methods marked with + the [JSFunction] attribute. Should be called only once at startup. Also automatically + populates properties marked with the [JSProperty] attribute. + + + + + Populates the object with functions by searching a .NET type for methods marked with + the [JSFunction] attribute. Should be called only once at startup. Also automatically + populates properties marked with the [JSProperty] attribute. + + The type to search for methods. + + + + Populates the object with functions by searching a .NET type for methods marked with + the [JSFunction] attribute. Should be called only once at startup. Also automatically + populates properties marked with the [JSProperty] attribute. + + The type to search for methods. + The binding flags to use to search for properties and methods. + + + + Populates the object with properties by searching a .NET type for fields marked with + the [JSField] attribute. Should be called only once at startup. + + + + + Populates the object with properties by searching a .NET type for fields marked with + the [JSField] attribute. Should be called only once at startup. + + The type to search for fields. + + + + Represents a the value of an accessor property. + + + + + Creates a new PropertyAccessorValue instance. + + The getter function, or null if no getter was provided. + The setter function, or null if no setter was provided. + + + + Gets the function that is called when the property value is retrieved. + + + + + Gets the function that is called when the property value is modified. + + + + + Gets the property value by calling the getter, if one is present. + + The value of the "this" keyword inside the getter. + The property value returned by the getter. + + + + Sets the property value by calling the setter, if one is present. + + The value of the "this" keyword inside the setter. + The desired value. + + + + Returns a string that represents the current object. + + + + + A set of flags which controls the accessibility of properties. + + + + + Indicates the property value is not writable, enumerable or configurable. This is + the default for built-in properties. + + + + + Indicates the property value is writable. If this flag is not set, attempting to + modify the property will fail. Not used if the property is an accessor property. + + + + + Indicates the property will be enumerated by a for-in enumeration. Otherwise, the + property is said to be non-enumerable. + + + + + Indicates the property can be deleted or changed to an accessor property or have it's + flags changed. + + + + + Indicates the property can be modified and deleted but will not be enumerated. + + + + + Indicates the property is read-write, enumerable and configurable. This is the default + for user-created properties. + + + + + Indicates the property is an accessor property (i.e. it has a getter or a setter). + + + + + Indicates the property is the "magic" length property (only found on arrays). + + + + + Represents either a named data property, or a named accessor property. + + + + + Creates a new PropertyDescriptor instance. + + The initial value for the property. + The property attributes. + + + + Creates a new PropertyDescriptor instance with a getter function and, optionally, a + setter function. + + The function to call to retrieve the property value. + The function to call to set the property value. + The property attributes (whether the property is writable or + not is implied by whether there is a setter function). + + + + Indicates that a property doesn't exist. + + + + + Used to indicate that a property whose value is undefined, and is not writable, + enumerable or configurable. + + + + + Gets a value that indicates whether the property exists. + + + + + Gets the property attributes. These attributes describe how the property can + be modified. + + + + + Gets a boolean value indicating whether the property value can be set. + + + + + Gets a boolean value indicating whether the property value will be included during an + enumeration. + + + + + Gets a boolean value indicating whether the property can be deleted. + + + + + Gets the raw property value. Does not call the get accessor, even if one is present. + + + + + Returns a string representing the current object. + + A string representing the current object. + + + + Gets a value that indicates whether the value is computed using accessor functions. + + + + + Gets the function that is called when the property value is retrieved, assuming this + property value is computed using accessor functions. Returns null if the + property is not a accessor property. + + + + + Gets the function that is called when the property value is modified, assuming this + property value is computed using accessor functions. Returns null if the + property is not a accessor property. + + + + + Creates a property descriptor from an object containing any of the following + properties: configurable, writable, enumerable, value, get, set. + + The object to get the property values from. + The values to use if the relevant value is not specified. + A PropertyDescriptor that corresponds to the object. + + + + Populates an object with the following properties: configurable, writable, enumerable, + value, get, set. + + The script engine used to create a new object. + An object with the information in this property descriptor set as individual + properties. + + + + Checks whether the given descriptor is compatible with the current descriptor. + + The new descriptor. + The descriptor corresponding to the currently existing property. + true if the new descriptor is compatible with the old one; false otherwise. + + + + Represents a property name and value. + + + + + Initializes a property with any descriptor. + + The property key (either a string or a Symbol). + A descriptor describing the property. + + + + Initializes a simple property. + + The property key (either a string or a Symbol). + The property value. + Indicates whether the property is readable, writable and/or enumerable. + + + + Initializes a getter/setter property. + + The property key (either a string or a Symbol). + The function to call to retrieve the property value. + The function to call to set the property value. + Indicates whether the property is readable, writable and/or enumerable. + + + + Gets the property key. + + + + + Gets the value of the property. + + + + + Gets the property attributes. These attributes describe how the property can + be modified. + + + + + Gets a boolean value indicating whether the property value can be set. + + + + + Gets a boolean value indicating whether the property value will be included during an + enumeration. + + + + + Gets a boolean value indicating whether the property can be deleted. + + + + + Returns a string that represents the current object. + + + + + Represents a property name. Used to speed up access to object properties and global variables. + + + + + Creates a new PropertyName instance. + + The name of the property to be accessed. + + + + The property name. + + + + + A reference to a schema that defines how properties are stored. + + + + + The index into the property array. + + + + + Caches property details. + + A reference to a schema that defines how properties are stored. + The index into the property array. + + + + Clears the cached property details. + + + + + Returns a textual representation of this object. + + + + + + Represents the information stored about a property in the class schema. + + + + + Creates a new SchemaProperty instance. + + The index of the property in the backing array. + The property attributes. These attributes describe how the + property can be modified. + + + + Gets a value that indicates that a property doesn't exist. + + + + + Gets the index of the property in the backing array. + + + + + Gets the property attributes. These attributes describe how the property can + be modified. + + + + + Gets a value that indicates whether the property exists. + + + + + Gets a boolean value indicating whether the property value can be set. + + + + + Gets a boolean value indicating whether the property value will be included during an + enumeration. + + + + + Gets a boolean value indicating whether the property can be deleted. + + + + + Gets a value that indicates whether the value is computed using accessor functions. + + + + + Gets a value that indicates whether the property is the magic length property. + + + + + Represents the built-in javascript Promise object. + + + + + Creates a new promise constructor. + + The next object in the prototype chain. + + + + Called when the Promise object is invoked like a function, e.g. var x = Promise(). + Throws an error. + + + + + Creates a new Promise instance. + + The function that the promise executes. + The Promise instance. + + + + Creates a new Promise instance from a task. + + A task to wait on. + The Promise instance. + + If the task is of type Task<object> then the result of the task will be used to + resolve the promise. Otherwise, the promise is resolved with "undefined" as the value. + + + + + A reference to the constructor function that is used to create derived objects. + + + + + Returns a Promise that is rejected for the specified reason. + + The reason. Can be an Error instance. + + + + + Returns either a new promise resolved with the passed argument, or the argument itself + if the argument is a promise produced by this constructor. + + Argument to be resolved by this Promise. Can also be a Promise or + a thenable to resolve. + + + + + Returns a new promise which is settled in the same way as the first passed promise to + settle. All elements of the passed iterable are resolved to promises. + + An iterable object such as an Array. + + + + + Returns a Promise. It takes one argument: a list of Promises that determine whether + the new Promise is fulfilled or rejected. + + An iterable object such as an Array. + + + + + Represents an instance of the Promise object. + + + + + Creates a new Promise instance. + + + + + + + Creates a new Promise instance. + + + + + + Resolves the promise with the given value. If the value is an object with a "then" + function, the returned promise will "follow" that thenable, adopting its eventual + state; otherwise the returned promise will be fulfilled with the value. + + The resolved value of the promise, or a promise or thenable to + follow. + + + + Rejects the promise with the given reason. + + The reason why this promise rejected. Can be an Error instance. + + + + Creates the Promise prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + When the promise is completed, i.e either fulfilled or rejected, the specified callback + function is executed. + + A Function called when the Promise is completed. + + + + + Returns a Promise and deals with rejected cases only. It behaves the same as calling + Promise.prototype.then(undefined, onRejected). + + A Function called when the Promise is rejected. This function + has one argument, the rejection reason. + + + + + Returns a Promise. It takes two arguments: callback functions for the success and + failure cases of the Promise. + + A Function called when the Promise is fulfilled. This + function has one argument, the fulfillment value. + A Function called when the Promise is rejected. This function + has one argument, the rejection reason. + + + + + Creates a task that completes when this promise completes. + + The task that completes when this promise completes. + + + + Gets the promise status. Used by debugger decoration only. + + + + + Gets the promise result. Used by debugger decoration only. + + + + + Gets a function that will resolve the promise. + + + + + Gets a function that will reject the promise. + + + + + Represents a proxy instance. + + + + + The proxy target. + + + + + Invalidates (switches off) the proxy. + + + + + The Set object lets you store unique values of any type, whether primitive values or object references. + + + + + Creates a new set constructor. + + The next object in the prototype chain. + + + + Called when the typed array object is invoked like a function, e.g. Proxy(). + Throws an error. + + + + + Creates a proxy object. + + A target object to wrap with Proxy. It can be any sort of object, including a native array, a function, or even another proxy. + An object whose properties are functions that define the behavior of the proxy when an operation is performed on it. + A new proxy object. + + + + Creates a revocable proxy object. + + The script engine. + A target object to wrap with Proxy. It can be any sort of object, including a native array, a function, or even another proxy. + An object whose properties are functions that define the behavior of the proxy when an operation is performed on it. + A new proxy object. + + + + Represents a callable, constructable instance of the Proxy class. + + + + + Creates a new proxy instance. + + The script engine. + A target object to wrap with Proxy. It can be any sort of object, + including a native array, a function, or even another proxy. + An object whose properties are functions that define the + behavior of the proxy when an operation is performed on it. + + + + The proxy target. + + + + + Invalidates (switches off) the proxy. + + + + + Calls this function, passing in the given "this" value and zero or more arguments. + + The value of the "this" keyword within the function. + An array of argument values. + The value that was returned from the function. + + + + Creates an object, using this function as the constructor. + + The value of 'new.target'. + An array of argument values. + The object that was created. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Represents an instance of the Proxy class, one that is non-callable and non-constructable. + + + + + Creates a new proxy instance. + + The script engine. + A target object to wrap with Proxy. It can be any sort of object, + including a native array, a function, or even another proxy. + An object whose properties are functions that define the + behavior of the proxy when an operation is performed on it. + + + + The proxy target. + + + + + Invalidates (switches off) the proxy. + + + + + Gets the next object in the prototype chain. There is no corresponding property in + javascript (it is is *not* the same as the prototype property), instead use + Object.getPrototypeOf(). Returns null for the root object in the prototype + chain. Use to set this value. + + + Enforces the following invariants: + * The return value must be either an Object or null. + * If the target object is not extensible, the return value must be the same as + Object.getPrototypeOf() applied to the proxy object's target object. + + + + + Sets the next object in the prototype chain. Can be null, which indicates there + are no further objects in the chain. + + The new prototype. + true to throw an exception if the prototype could not + be set. This can happen if the object is non-extensible or if setting the prototype + would introduce a cyclic dependency. + true if the prototype was successfully applied; false otherwise. + + + + Gets a value that indicates whether the object can have new properties added to it. + Called by Object.isExtensible(). Use to set this value. + + + + + Makes this object non-extensible, which means no new properties can be added to it. + + true to throw an exception if the object could not + be made non-extensible. + true if the operation was successful, false otherwise. + + + + Gets a descriptor for the property with the given array index. + + The array index of the property. + A property descriptor containing the property value and attributes. + The prototype chain is not searched. + + + + Gets a descriptor for the property with the given name. + + The property key (either a string or a Symbol). + A property descriptor containing the property value and attributes. + + Enforces the following invariants: + * The result of [[GetOwnProperty]] must be either an Object or undefined. + * A property cannot be reported as non-existent, if it exists as a non-configurable own + property of the target object. + * A property cannot be reported as non-existent, if the target object is not + extensible, unless it does not exist as an own property of the target object. + * A property cannot be reported as existent, if the target object is not extensible, + unless it exists as an own property of the target object. + * A property cannot be reported as non-configurable, unless it exists as a + non-configurable own property of the target object. + * A property cannot be reported as both non-configurable and non-writable, unless it + exists as a non-configurable, non-writable own property of the target object. + + + + + Defines or redefines the value and attributes of a property. The prototype chain is + not searched so if the property exists but only in the prototype chain a new property + will be created. + + The property key of the property to modify. + The property value and attributes. + true to throw an exception if the property could not + be set. This can happen if the property is not configurable or the object is sealed. + true if the property was successfully modified; false otherwise. + + + + Determines if a property with the given name exists. + + The property key (either a string or a Symbol). + true if the property exists on this object or in the prototype chain; + false otherwise. + + + + Gets the value of the property with the given array index. + + The array index of the property. + The value of the "this" keyword inside a getter. + The value of the property, or null if the property doesn't exist. + The prototype chain is searched if the property does not exist directly on + this object. + + + + Gets the value of the property with the given name. + + The name of the property. + The value of the property, or if the property + doesn't exist. + The prototype chain is searched if the property does not exist directly on + this object. + + + + Gets the value of the property with the given name. The name cannot be an array index. + + The property key (either a string or a Symbol). Cannot be an array index. + The value of the "this" keyword inside a getter. + The value of the property, or null if the property doesn't exist. + The prototype chain is searched if the property does not exist directly on + this object. + + + + Gets the value of the property with the given name. + + The property key (either a string or a Symbol). + The value of the "this" keyword inside a getter. + The value of the property, or null if the property doesn't exist. + The prototype chain is searched if the property does not exist directly on + this object. + + + + Sets the value of the property with the given array index. If a property with the + given index does not exist, or exists in the prototype chain (and is not a setter) then + a new property is created. + + The array index of the property to set. + The value to set the property to. This must be a javascript + primitive (double, string, etc) or a class derived from . + The value of the "this" keyword inside a setter. + true to throw an exception if the property could not + be set. This can happen if the property is read-only or if the object is sealed. + false if an error occurred. + + + + Sets the value of the property with the given name. If a property with the given name + does not exist, or exists in the prototype chain (and is not a setter) then a new + property is created. + + The name of the property to set. + The value to set the property to. This must be a javascript + primitive (double, string, etc) or a class derived from . + The value of the "this" keyword inside a setter. + true to throw an exception if the property could not + be set (i.e. if the property is read-only or if the object is not extensible and a new + property needs to be created). + false if is false and an error + occurred; true otherwise. + + + + Sets the value of the property with the given name. If a property with the given name + does not exist, or exists in the prototype chain (and is not a setter) then a new + property is created. + + The property key of the property to set. + The value to set the property to. This must be a javascript + primitive (double, string, etc) or a class derived from . + The value of the "this" keyword inside a setter. + true to throw an exception if the property could not + be set (i.e. if the property is read-only or if the object is not extensible and a new + property needs to be created). + false if is false and an error + occurred; true otherwise. + + + + Deletes the property with the given name. + + The property key of the property to delete. + true to throw an exception if the property could not + be set because the property was marked as non-configurable. + true if the property was successfully deleted, or if the property did + not exist; false if the property was marked as non-configurable and + was false. + + + + Gets an enumerable list of every property name associated with this object. + Does not include properties in the prototype chain. + + + + + Represents the built-in Reflect class that provides methods for interceptable JavaScript + operations. + + + + + Creates a new Reflect object. + + The next object in the prototype chain. + + + + Calls a target function with arguments as specified by the argumentsList parameter. + See also Function.prototype.apply(). + + The target function to call. + The value of this provided for the call to target. + An array-like object specifying the arguments with which target should be called. + The result of calling the given target function with the specified this value and arguments. + + + + The new operator as a function. Equivalent to calling new target(...argumentsList). Also provides the option to specify a different prototype. + + The target function to call. + An array-like object specifying the arguments with which target should be called. + The constructor whose prototype should be used. See also the new.target operator. If newTarget is not present, its value defaults to target. + A new instance of target (or newTarget, if present), initialized by target as a constructor with the given argumentsList. + + + + Similar to Object.defineProperty(). Returns a Boolean that is true if the property was successfully defined. + + The target object on which to define the property. + The name of the property to be defined or modified. + The attributes for the property being defined or modified. + A Boolean indicating whether or not the property was successfully defined. + + + + The delete operator as a function. Equivalent to calling delete target[propertyKey]. + + The target object on which to delete the property. + The name of the property to be deleted. + A Boolean indicating whether or not the property was successfully deleted. + + + + Returns the value of the property. Works like getting a property from an object (target[propertyKey]) as a function. + + The target object on which to get the property. + The name of the property to get. + The value of this provided for the call to target if a getter + is encountered. When used with Proxy, it can be an object that inherits from target. + The value of the property. + + + + Similar to Object.getOwnPropertyDescriptor(). Returns a property descriptor of the given property if it exists on the object, undefined otherwise. + + The target object in which to look for the property. + The name of the property to get an own property descriptor for. + + + + + Same as Object.getPrototypeOf(). + + The target object of which to get the prototype. + The prototype of the given object. If there are no inherited properties, null is returned. + + + + Returns a Boolean indicating whether the target has the property. Either as own or + inherited. Works like the in operator as a function. + + The target object in which to look for the property. + The name of the property to check. + A Boolean indicating whether or not the target has the property. + + + + Same as Object.isExtensible(). Returns a Boolean that is true if the target is extensible. + + The target object which to check if it is extensible. + A Boolean indicating whether or not the target is extensible. + + + + Returns an array of the target object's own (not inherited) property keys. + + The target object from which to get the own keys. + An Array of the target object's own property keys. + + + + Similar to Object.preventExtensions(). + + The target object on which to prevent extensions. + A Boolean indicating whether or not the target was successfully set to prevent extensions. + + + + A function that assigns values to properties. Returns a Boolean that is true if the update was successful. + + The target object on which to set the property. + The name of the property to set. + The value to set. + The value of this provided for the call to target if a setter is encountered. + A Boolean indicating whether or not setting the property was successful. + + + + A function that sets the prototype of an object. Returns a Boolean that is true if the update was successful. + + The target object of which to set the prototype. + The object's new prototype (an object or null). + A Boolean indicating whether or not the prototype was successfully set. + + + + Represents the built-in javascript RegExp object. + + + + + Creates a new RegExp object. + + The next object in the prototype chain. + + + + A reference to the constructor function that is used to create derived objects. + + + + + Adds the deprecated RegExp properties to the given list. + + The list to add to. + + + + Initializes a single deprecated property. + + The list to add to. + The name of the property. + The property getter. + The property attributes (determines whether the property is enumerable). + + + + Sets the deprecated RegExp properties. + + The string against which a regular expression is matched. + The regular expression match to base the properties on. + + + + Gets the value of RegExp.input and RegExp.$_. + + The value of RegExp.input and RegExp.$_. + + + + Adapter for GetInput(). + + + + + + + + + Gets the value of RegExp.$1. + + The value of RegExp.$1. + + + + Adapter for GetGroup1(). + + + + + + + + + Gets the value of RegExp.$2. + + The value of RegExp.$2. + + + + Adapter for GetGroup2(). + + + + + + + + + Gets the value of RegExp.$3. + + The value of RegExp.$3. + + + + Adapter for GetGroup3(). + + + + + + + + + Gets the value of RegExp.$4. + + The value of RegExp.$4. + + + + Adapter for GetGroup4(). + + + + + + + + + Gets the value of RegExp.$5. + + The value of RegExp.$5. + + + + Adapter for GetGroup5(). + + + + + + + + + Gets the value of RegExp.$6. + + The value of RegExp.$6. + + + + Adapter for GetGroup6(). + + + + + + + + + Gets the value of RegExp.$7. + + The value of RegExp.$7. + + + + Adapter for GetGroup7(). + + + + + + + + + Gets the value of RegExp.$8. + + The value of RegExp.$8. + + + + Adapter for GetGroup8(). + + + + + + + + + Gets the value of RegExp.$9. + + The value of RegExp.$9. + + + + Adapter for GetGroup9(). + + + + + + + + + Gets the value of RegExp.lastMatch and RegExp.$&. + + The value of RegExp.lastMatch and RegExp.$&. + + + + Adapter for GetLastMatch(). + + + + + + + + + Gets the value of RegExp.lastParen and RegExp.$+. + + The value of RegExp.lastParen and RegExp.$+. + + + + Adapter for GetLastParen(). + + + + + + + + + Gets the value of RegExp.leftContext and RegExp.$`. + + The value of RegExp.leftContext and RegExp.$`. + + + + Adapter for GetLeftContext(). + + + + + + + + + Gets the value of RegExp.rightContext and RegExp.$'. + + The value of RegExp.rightContext and RegExp.$'. + + + + Adapter for GetRightContext(). + + + + + + + + + Called when the RegExp object is invoked like a function e.g. RegExp('abc', 'g') or + RegExp(/abc/). If a string is passed as the first parameter it creates a new regular + expression instance. Otherwise, if a regular expression is passed it returns the given + regular expression verbatim. + + A regular expression pattern or a regular expression. + Available flags, which may be combined, are: + g (global search for all occurrences of pattern) + i (ignore case) + m (multiline search) + + + + Called when the new keyword is used on the RegExp object e.g. new RegExp(/abc/). + Creates a new regular expression instance. + + The regular expression pattern, or a regular expression + to clone. + Available flags, which may be combined, are: + g (global search for all occurrences of pattern) + i (ignore case) + m (multiline search) + + + + Called when the new keyword is used on the RegExp object e.g. new RegExp(/abc/). + Creates a new regular expression instance. + + The value of the new.target expression. + The regular expression pattern, or a regular expression + to clone. + Available flags, which may be combined, are: + g (global search for all occurrences of pattern) + i (ignore case) + m (multiline search) + + + + Represents an instance of the RegExp object. + + + + + Creates a new regular expression instance. + + The next object in the prototype chain. + The regular expression pattern. + Available flags, which may be combined, are: + g (global search for all occurrences of pattern) + i (ignore case) + m (multiline search) + + + + Creates a new regular expression instance by copying the pattern and flags from another + RegExp instance. + + The next object in the prototype chain. + The instance to copy the pattern and flags from. + + + + Creates the RegExp prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + Gets the primitive value of this object. + + + + + Gets the regular expression pattern. + + + + + Gets a string that contains the flags. + + + + + Gets a value that indicates whether the global flag is set. If this flag is set it + indicates that a search should find all occurrences of the pattern within the searched + string, not just the first one. + + + + + Gets a value that indicates whether the multiline flag is set. If this flag is set it + indicates that the ^ and $ tokens should match the start and end of lines and not just + the start and end of the string. + + + + + Gets a value that indicates whether the ignoreCase flag is set. If this flag is set it + indicates that a search should ignore differences in case between the pattern and the + matched string. + + + + + Gets the character position to start searching when the global flag is set. + + + + + Compiles the regular expression for faster execution. + + The regular expression pattern. + Available flags, which may be combined, are: + g (global search for all occurrences of pattern) + i (ignore case) + m (multiline search) + + + + Returns a boolean value that indicates whether or not a pattern exists in a searched string. + + The string on which to perform the search. + true if the regular expression has at least one match in the given + string; false otherwise. + + + + Executes a search on a string using a regular expression pattern, and returns an array + containing the results of that search. + + The string on which to perform the search. + Returns an array containing the match and submatch details, or null if + no match was found. The array returned by the exec method has three properties, input, + index and lastIndex. The input property contains the entire searched string. The index + property contains the position of the matched substring within the complete searched + string. The lastIndex property contains the position following the last character in + the match. + + + + Calculates the position to start searching. + + The string on which to perform the search. + The character position to start searching. + + + + Finds all regular expression matches within the given string. + + The string on which to perform the search. + An array containing the matched strings. + + + + Returns a copy of the given string with text replaced using a regular expression. + + The string on which to perform the search. + A string containing the text to replace for every successful match. + A copy of the given string with text replaced using a regular expression. + + + + Returns a copy of the given string with text replaced using a regular expression. + + The string on which to perform the search. + A string containing the text to replace for every successful match. + A copy of the given string with text replaced using a regular expression. + + + + Returns a copy of the given string with text replaced using a regular expression. + + The string on which to perform the search. + A function that is called to produce the text to replace + for every successful match. + A copy of the given string with text replaced using a regular expression. + + + + Returns the position of the first substring match in a regular expression search. + + The string on which to perform the search. + The character position of the first match, or -1 if no match was found. + + + + Splits the given string into an array of strings by separating the string into substrings. + + The string to split. + The maximum number of array items to return. Defaults to unlimited. + An array containing the split strings. + + + + Returns a string representing the current object. + + The object that is being operated on. + A string representing the current object. + + + + Parses the flags parameter into an enum. + + Available flags, which may be combined, are: + g (global search for all occurrences of pattern) + i (ignore case) + m (multiline search) + RegexOptions flags that correspond to the given flags. + + + + Creates a .NET Regex object using the given pattern and options. + + The pattern string. + The regular expression options. + A constructed .NET Regex object. + + + + The Set object lets you store unique values of any type, whether primitive values or object references. + + + + + Creates a new set constructor. + + The next object in the prototype chain. + + + + A reference to the constructor function that is used to create derived objects. + + + + + Called when the typed array object is invoked like a function, e.g. Int8Array(). + Throws an error. + + + + + Creates a new set instance. + + If an iterable object is passed, all of its elements will be + added to the new Set. null is treated as undefined. + A new set instance. + + + + The Set object lets you store unique values of any type, whether primitive values or object references. + + + + + Creates a new set instance. + + The next object in the prototype chain. + + + + Creates the Set prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + Called before a linked list node is deleted. + + + + + Gets the internal storage. Used by debugger decoration only. + + + + + The number of elements in the Set. + + + + + Appends a new element with a specified value to the end of the Set. + + The value of the element to add to the Set. + The Set object. + + + + Removes all elements from a Set + + + + + Removes the specified value from the Set. + + The value of the element to remove from the Set. + true if an element in the Set object has been removed successfully; + otherwise false. + + + + Returns a new array iterator object that contains the key/value pairs for each index in + the array. + + An array iterator object that contains the key/value pairs for each index in + the array. + + + + Executes a provided function once per each value in the Set, in insertion order. + + Function to execute for each element. + Value to use as this when executing callback. + + + + Returns a boolean indicating whether an element with the specified value exists in the + Set or not. + + The value to test for presence in the Set. + true if an element with the specified value exists in the Set object; + otherwise false. + + + + Returns a new array iterator object that contains the keys for each index in the array. + + An array iterator object that contains the keys for each index in the array. + + + + Returns a new array iterator object that contains the values for each index in the + array. + + An array iterator object that contains the values for each index in the + array. + + + + Implements the SameValueZero comparison operation. + + + + + Represents an iteration over a Set. + + + + + Creates a new set iterator. + + The next object in the prototype chain. + The set to iterate over. + The linked list to iterate over. + The type of values to return. + + + + Creates the array iterator prototype object. + + The script environment. + + + + Called before a linked list node is deleted. + + The node that is being deleted. + + + + The tag value that is used by the base implementation of toString(). + + + + + Moves the iterator to the next element in the array. + + An object containing two properies: value and done. + + + + Gets wheter the end is reached. Used by debugger decoration only. + + + + + Gets current index. Used by debugger decoration only. + + + + + Gets what is iterated - key, value or both. + + + + + Gets the iterated Set. + + + + + Represents the built-in javascript String object. + + + + + Creates a new String object. + + The next object in the prototype chain. + + + + Called when the String object is invoked like a function, e.g. var x = String(). + Returns an empty string. + + + + + Called when the String object is invoked like a function, e.g. var x = String(NaN). + Converts the given argument into a string value (not a String object). + + + + + Creates a new String instance and initializes it to the empty string. + + + + + Creates a new String instance and initializes it to the given value. + + The value to initialize to. + + + + Returns a string created by using the specified sequence of Unicode values. + + An array of 16-bit character codes. + + + + + Returns a string created by using the specified sequence of Unicode codepoints. + + The script engine. + An array of unicode code points. + + + + + A tag function of template literals which is used to get the raw string form of + template strings (that is, the original, uninterpreted text). + + The script engine. + Well-formed template call site object e.g. { raw: ['one', 'two'] }. + Contains substitution values. + A formatted string containing the raw template literal text (with + substitutions included). + + + + Represents an instance of the JavaScript string object. + + + + + Creates a new string instance. + + The next object in the prototype chain. + The value to initialize the instance. + + + + Creates the string prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + Gets the primitive value of this object. + + + + + Gets the number of characters in the string. + + + + + Gets a descriptor for the property with the given array index. + + The array index of the property. + A property descriptor containing the property value and attributes. + The prototype chain is not searched. + + + + Defines or redefines the value and attributes of a property. The prototype chain is + not searched so if the property exists but only in the prototype chain a new property + will be created. + + The property key of the property to modify. + The property value and attributes. + true to throw an exception if the property could not + be set. This can happen if the property is not configurable or the object is sealed. + true if the property was successfully modified; false otherwise. + + + + Gets an enumerable list of every property name associated with this object. + Does not include properties in the prototype chain. + + + + + Returns the character at the specified index. + + The string that is being operated on. + The character position (starts at 0). + + + + + Returns a number indicating the 16-bit UTF-16 character code at the given index. + + The string that is being operated on. + The character position (starts at 0). + + + + + Returns a number indicating the Unicode code point of the character at the given index. + + The string that is being operated on. + The character position (starts at 0). + + + + + Combines the text of two or more strings and returns a new string. + + The current script environment. + The string that is being operated on. + The strings to concatenate with this string. + The result of combining this string with the given strings. + + + + Returns true if the calling String object contains the given string. + + The script engine. + The string that is being operated on. + The substring to search for. + The character position within the string to start searching. + true if the substring was found; false otherwise. + + + + Returns the index within the calling String object of the first occurrence of the specified value, or -1 if not found. + + The string that is being operated on. + The substring to search for. + The character position to start searching from. Defaults to 0. + The character position of the start of the substring, if it was found, or -1 if it wasn't. + + + + Returns the index within the calling String object of the specified value, searching + backwards from the end of the string. + + The string that is being operated on. + The substring to search for. + The index of the character to start searching. + The index of the substring, or -1 if not found. + + + + Returns a number indicating whether a reference string comes before or after or is the + same as the given string in sort order. + + The string that is being operated on. + The string to compare with. + -1, 0 or 1 depending on whether the given string comes before or after or is + the same as the given string in sort order. + + + + Finds the first match of the given substring within this string. + + The current script environment. + The string that is being operated on. + The substring or regular expression to search for. + An array containing the matched strings. + + + + Returns a new string whose binary representation is in a particular Unicode normalization form. + + The current ScriptEngine instance. + The string that is being operated on. + A Unicode normalization form. + A new string whose binary representation is in a particular Unicode normalization form. + + + + Wraps the string in double quotes ("). Any existing double quotes in the string are + escaped using the backslash character. + + The string to wrap. + The input string wrapped with double quotes and with existing double quotes + escaped. + + + + Substitutes the given string or regular expression with the given text or the result + of a replacement function. + + The current script environment. + The string that is being operated on. + The substring to replace -or- a regular expression that + matches the text to replace. + The text to substitute -or- a function that + returns the text to substitute. + A copy of this string with text replaced. + + + + Returns a copy of this string with text replaced. + + The string that is being operated on. + The text to search for. + A string containing the text to replace for every successful + match. + A copy of this string with text replaced. + + + + Returns a copy of this string with text replaced using a replacement function. + + The string that is being operated on. + The text to search for. + A function that is called to produce the text to replace + for every successful match. + A copy of this string with text replaced. + + + + Returns the position of the first substring match. + + The current script environment. + The string that is being operated on. + The string or regular expression to search for. + The character position of the first match, or -1 if no match was found. + + + + Extracts a section of the string and returns a new string. + + The string that is being operated on. + The character position to start extracting. + The character position to stop extacting. + A section of the string. + + + + Splits this string into an array of strings by separating the string into substrings. + + The current script environment. + The string that is being operated on. + A string or regular expression that indicates where to split the string. + The maximum number of array items to return. Defaults to unlimited. + An array containing the split strings. + + + + Splits this string into an array of strings by separating the string into substrings. + + The current script environment. + The string that is being operated on. + A string that indicates where to split the string. + The maximum number of array items to return. Defaults to unlimited. + An array containing the split strings. + + + + Returns the characters in a string beginning at the specified location through the specified number of characters. + + The string that is being operated on. + The character position to start extracting. + The number of characters to extract. + A substring of this string. + + + + Returns the characters in a string between two indexes into the string. + + The string that is being operated on. + The character position to start extracting. + The character position to stop extracting. + A substring of this string. + + + + Converts the characters within this string to lowercase while respecting the current + locale. + + A copy of this string with the characters converted to lowercase. + + + + Converts the characters within this string to uppercase while respecting the current + locale. + + A copy of this string with the characters converted to uppercase. + + + + Returns the calling string value converted to lowercase. + + A copy of this string with the characters converted to lowercase. + + + + Returns a string representing the current object. + + A string representing the current object. + + + + Returns the calling string value converted to uppercase. + + A copy of this string with the characters converted to uppercase. + + + + Trims whitespace from the beginning and end of the string. + + + + + + Trims whitespace from the beginning of the string. + + + + + + Trims whitespace from the beginning of the string. + + + + + + Trims whitespace from the beginning of the string. + + + + + + Trims whitespace from the beginning of the string. + + + + + + Returns the underlying primitive value of the current object. + + The underlying primitive value of the current object. + + + + Determines whether a string begins with the characters of another string. + + The string that is being operated on. + The characters to be searched for at the start of this string. + The position at which to begin searching. Defaults to zero. + true if this string starts with the given string, false otherwise. + + + + Determines whether a string ends with the characters of another string. + + The string that is being operated on. + The characters to be searched for at the end of this string. + Search within the string as if the string were only this long. + Defaults to the string's actual length. + true if this string ends with the given string, false otherwise. + + + + Determines whether a string contains the characters of another string. + + The string that is being operated on. + The characters to be searched for. + The position at which to begin searching. Defaults to zero. + true if this string contains the given string, false otherwise. + + + + Repeats this string a number of times and returns the result. + + The current ScriptEngine instance. + The string that is being operated on. + The number of times to repeat the string. Must be zero or higher. + A repeated string. + + + + Returns an iterator that iterates over the code points of the string. + + An iterator for the string instance. + + + + Wraps the string with an anchor tag. + + The string that is being operated on. + The name of the anchor. + + + + + Wraps the string with a big tag. + + The string that is being operated on. + + + + + Wraps the string with a blink tag. + + The string that is being operated on. + + + + + Wraps the string with a bold (b) tag. + + The string that is being operated on. + + + + + Wraps the string with a tt tag. + + + + + + Wraps the string with a font tag that specifies the given color. + + The string that is being operated on. + The color value or name. + + + + + Wraps the string with a font tag that specifies the given font size. + + The string that is being operated on. + The font size, specified as an integer. + + + + + Wraps the string with a italics (i) tag. + + The string that is being operated on. + + + + + Wraps the string with a hyperlink. + + The string that is being operated on. + The hyperlink URL. + + + + + Wraps the string in a small tag. + + The string that is being operated on. + + + + + Wraps the string in a strike tag. + + The string that is being operated on. + + + + + Wraps the string in a sub tag. + + The string that is being operated on. + + + + + Wraps the string in a sup tag. + + The string that is being operated on. + + + + + Determines if the given object can be considered a RegExp-like object. + + The object instance to check. + true if the object instance has [Symbol.match] value that is truthy; + false otherwise. + + + + Represents an iteration over a String. + + + + + Creates a new string iterator. + + The next object in the prototype chain. + The string to iterate over. + + + + Creates the array iterator prototype object. + + The script environment. + + + + The tag value that is used by the base implementation of toString(). + + + + + Moves the iterator to the next element in the array. + + An object containing two properies: value and done. + + + + Gets wheter the end is reached. Used by debugger decoration only. + + + + + Gets current index. Used by debugger decoration only. + + + + + Gets current character. Used by debugger decoration only. + + + + + Represents a symbol primitive. + + + + + Creates a new symbol primitive. + + An optional description of the symbol. + + + + An optional description of the symbol. + + + + + Converts the value to a string. + + + + + + A method that determines if a constructor object recognizes an object as one of the + constructor's instances. Used by the 'instanceof' operator. + + + + + A Boolean valued property that if true indicates that an object should be flattened to + its array elements by Array.prototype.concat. + + + + + Used to override the default iterator for an object. Used by the for-of statement. + + + + + A regular expression method that matches the regular expression against a string. + Used by the String.prototype.match method. + + + + + A regular expression method that replaces matched substrings of a string. Used by the + String.prototype.replace method. + + + + + A regular expression method that returns the index within a string that matches the + regular expression. Used by the String.prototype.search method. + + + + + A function valued property that is the constructor function that is used to create + derived objects. + + + + + A regular expression method that splits a string at the indices that match the regular + expression. Used by the String.prototype.split method. + + + + + Used to override ToPrimitive behaviour. + + + + + Used to customize the behaviour of Object.prototype.toString(). + + + + + An object valued property whose own and inherited property names are property names + that are excluded from the with environment bindings of the associated object. + + + + + Represents the built-in Symbol object. + + + + + Creates a new Symbol object. + + The next object in the prototype chain. + The prototype for instances created by this function. + + + + Called when the Symbol object is invoked like a function, e.g. var x = Symbol(). + + The name or description of the symbol (optional). + + + + Called when the Symbol object is called using new, e.g. var x = new Symbol(). + + + + + Searches for existing symbols in a runtime-wide symbol registry with the given key and + returns it if found. Otherwise a new symbol gets created in the global symbol registry + with this key. + + The key for the symbol (also used for the description of the symbol). + An existing symbol with the given key if found; otherwise, a new symbol is + created and returned. + + + + Retrieves a shared symbol key from the global symbol registry for the given symbol. + + The symbol to find a key for. + A string representing the key for the given symbol if one is found on the + global registry; otherwise, undefined. + + + + Represents an instance of the Symbol object. + + + + + Creates a new symbol instance. + + The next object in the prototype chain. + The symbol primitive. + + + + Initializes the prototype properties. + + The object to set the properties on. + A reference to the constructor that owns the prototype. + + + + Returns a string representing the object. + + A string representing the object. + + + + Returns the primitive value of a Symbol object. + + The primitive value of a Symbol object. + + + + Converts a Symbol object to a primitive value. + + Specifies the conversion behaviour. Must be "default", "string" or "number". + The primitive value of a Symbol object. + + + + The ArrayBuffer object is used to represent a generic, fixed-length raw binary data buffer. + You can not directly manipulate the contents of an ArrayBuffer; instead, you create one of + the typed array objects or a DataView object which represents the buffer in a specific + format, and use that to read and write the contents of the buffer. + + + + + Creates a new array buffer constructor. + + The next object in the prototype chain. + + + + Called when the ArrayBuffer object is invoked like a function, e.g. var x = ArrayBuffer(). + Throws an error. + + + + + Creates a new ArrayBuffer of the given length in bytes. Its contents are initialized + to zero. + + The size, in bytes, of the array buffer to create. + A new ArrayBuffer object of the specified size. + + + + A reference to the constructor function that is used to create derived objects. + + + + + Returns true if is one of the ArrayBuffer views, such as + typed array objects or a DataView; false otherwise. + + The argument to be checked. + true if arg is one of the ArrayBuffer views. + + + + The ArrayBuffer object is used to represent a generic, fixed-length raw binary data buffer. + You can not directly manipulate the contents of an ArrayBuffer; instead, you create one of + the typed array objects or a DataView object which represents the buffer in a specific + format, and use that to read and write the contents of the buffer. + + + + + Creates a new ArrayBuffer instance. + + The next object in the prototype chain. + The size, in bytes, of the array buffer to create. + + + + Creates a new ArrayBuffer instance from an existing buffer. + + The next object in the prototype chain. + The buffer to use. + + + + Creates the ArrayBuffer prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + Gets the internal array for this ArrayBuffer. + + + + + Returns a copy of the buffer data. + + A copy of the buffer data. + + + + Gets the length of an ArrayBuffer in bytes. Returns 0 if this ArrayBuffer has been + detached. + + + + + Returns a new ArrayBuffer whose contents are a copy of this ArrayBuffer's bytes from + begin, inclusive, up to end, exclusive. + + Zero-based byte index at which to begin slicing. + A new ArrayBuffer object. + + + + Returns a new ArrayBuffer whose contents are a copy of this ArrayBuffer's bytes from + begin, inclusive, up to end, exclusive. + + Zero-based byte index at which to begin slicing. + Byte index to end slicing. If end is unspecified, the new + ArrayBuffer contains all bytes from begin to the end of this ArrayBuffer. The range + specified by the begin and end values is clamped to the valid index range for the + current array. If the computed length of the new ArrayBuffer would be negative, it is + clamped to zero. + A new ArrayBuffer object. + + + + The DataView view provides a low-level interface for reading and writing multiple number + types in an ArrayBuffer irrespective of the platform's endianness. + + + + + Creates a new DataView constructor. + + The next object in the prototype chain. + + + + Called when the DataView object is invoked like a function, e.g. var x = DataView(). + Throws an error. + + + + + Creates a new DataView. + + An existing ArrayBuffer to use as the storage for the new + DataView object. + The offset, in bytes, to the first byte in the specified + buffer for the new view to reference. If not specified, the view of the buffer will + start with the first byte. + The number of elements in the byte array. If unspecified, + length of the view will match the buffer's length. + A new DataView object of the specified size. + + + + The DataView view provides a low-level interface for reading and writing multiple number + types in an ArrayBuffer irrespective of the platform's endianness. + + + + + Creates a new DataView instance. + + The next object in the prototype chain. + An existing ArrayBuffer to use as the storage for the new + DataView object. + The offset, in bytes, to the first byte in the specified + buffer for the new view to reference. If not specified, the view of the buffer will + start with the first byte. + The number of elements in the byte array. If unspecified, + length of the view will match the buffer's length. + + + + Creates the DataView prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + The ArrayBuffer referenced by the DataView at construction time. + + + + + The offset (in bytes) of this view from the start of its ArrayBuffer. + + + + + The length (in bytes) of this view from the start of its ArrayBuffer. + + + + + Gets a 32-bit floating point number at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + read the data. + Indicates whether the number is stored in little- or + big-endian format. If false or undefined, a big-endian value is read. + The 32-bit floating point number at the specified byte offset from the start + of the DataView. + + + + Gets a 64-bit floating point number at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + read the data. + Indicates whether the number is stored in little- or + big-endian format. If false or undefined, a big-endian value is read. + The 64-bit floating point number at the specified byte offset from the start + of the DataView. + + + + Gets a signed 16-bit integer at the specified byte offset from the start of the DataView. + + The offset, in bytes, from the start of the view where to + read the data. + Indicates whether the number is stored in little- or + big-endian format. If false or undefined, a big-endian value is read. + The signed 16-bit integer at the specified byte offset from the start of the + DataView. + + + + Gets a signed 32-bit integer at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + read the data. + Indicates whether the number is stored in little- or + big-endian format. If false or undefined, a big-endian value is read. + The signed 32-bit integer at the specified byte offset from the start + of the DataView. + + + + Gets a signed 64-bit integer at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + read the data. + Indicates whether the number is stored in little- or + big-endian format. If false or undefined, a big-endian value is read. + The signed 64-bit integer at the specified byte offset from the start + of the DataView. + + + + Gets a signed 8-bit integer (byte) at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + read the data. + The signed 8-bit integer (byte) at the specified byte offset from the start + of the DataView. + + + + Gets an unsigned 8-bit integer (byte) at the specified byte offset from the start of + the DataView. + + The offset, in bytes, from the start of the view where to + read the data. + Indicates whether the number is stored in little- or + big-endian format. If false or undefined, a big-endian value is read. + The unsigned 8-bit integer (byte) at the specified byte offset from the start + of the DataView. + + + + Gets an unsigned 32-bit integer at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + read the data. + Indicates whether the number is stored in little- or + big-endian format. If false or undefined, a big-endian value is read. + The unsigned 32-bit integer at the specified byte offset from the start + of the DataView. + + + + Gets an unsigned 8-bit integer (byte) at the specified byte offset from the start of + the DataView. + + The offset, in bytes, from the start of the view where to + read the data. + The unsigned 8-bit integer (byte) at the specified byte offset from the start + of the DataView. + + + + Stores a signed 32-bit float value at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + store the data. + The value to set. + Indicates whether the 32-bit float is stored in little- or + big-endian format. If false or undefined, a big-endian value is written. + + + + Stores a signed 64-bit float value at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + store the data. + The value to set. + Indicates whether the 64-bit float is stored in little- or + big-endian format. If false or undefined, a big-endian value is written. + + + + Stores a signed 16-bit integer value at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + store the data. + The value to set. + Indicates whether the 32-bit float is stored in little- or + big-endian format. If false or undefined, a big-endian value is written. + + + + Stores a signed 32-bit integer value at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + store the data. + The value to set. + Indicates whether the 32-bit float is stored in little- or + big-endian format. If false or undefined, a big-endian value is written. + + + + Stores a signed 8-bit integer value at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + store the data. + The value to set. + + + + Stores an unsigned 16-bit integer value at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + store the data. + The value to set. + Indicates whether the 32-bit float is stored in little- or + big-endian format. If false or undefined, a big-endian value is written. + + + + Stores an unsigned 32-bit integer value at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + store the data. + The value to set. + Indicates whether the 32-bit float is stored in little- or + big-endian format. If false or undefined, a big-endian value is written. + + + + Stores an unsigned 8-bit integer value at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + store the data. + The value to set. + + + + Stores a series of bytes at the specified byte offset from the start of the + DataView. + + The offset, in bytes, from the start of the view where to + store the data. + The bytes to store. + Indicates whether the bytes are stored in little- or + big-endian format. If false, a big-endian value is written. + + + + Represents the built-in javascript String object. + + + + + Creates a new typed array constructor. + + The next object in the prototype chain. + Defines the element type and behaviour of the typed array. + The result of calling . + + + + The data storage size, in bytes, of each array element. + + + + + Creates a new typed array from a .NET array. + + A .NET array + A new typed array instance. + + + + A reference to the constructor function that is used to create derived objects. + + + + + Called when the typed array object is invoked like a function, e.g. Int8Array(). + Throws an error. + + + + + Creates a new (empty) typed array instance. + + A new typed array instance. + + + + Creates a new typed array instance. + + Either the length of the new array, or buffer, or an array-like + object. + The offset, in bytes, to the first byte in the specified + buffer for the new view to reference. If not specified, the TypedArray will start + with the first byte. Ignored unless the first parameter is a array buffer. + The length (in elements) of the typed array. Ignored unless the + first parameter is a array buffer. + A new typed array instance. + + + + Creates a new typed array from an array-like or iterable object. + + An array-like or iterable object to convert to a typed array. + Optional. Map function to call on every element of the typed array. + Optional. Value to use as this when executing mapFn. + A new typed array instance. + + + + Creates a new typed array with a variable number of elements. + + Elements of which to create the typed array. + A new typed array with the given elements. + + + + Represents a typed array instance. + + + + + Creates a new typed array instance. + + The next object in the prototype chain. + Defines the element type and behaviour of the typed array. + An existing ArrayBuffer to use as the storage for the new + TypedArray object. + The offset, in bytes, to the first byte in the specified + buffer for the new view to reference. If not specified, the TypedArray will start + with the first byte. + The length (in elements) of the typed array. + + + + Creates the TypedArray prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + The result of calling . + + + + Speeds up initialization by only calling GetDeclarativeProperties once. + + + + + + + The type of each element in the array. + + + + + Gets or sets the item at the given index. + + The array index. + The value of the item at the given index. + + + + The data storage size, in bytes, of each array element. + + + + + The ArrayBuffer referenced by the TypedArray at construction time. + + + + + The offset (in bytes) of the typed array from the start of its ArrayBuffer. + + + + + The length (in bytes) of the typed array from the start of its ArrayBuffer. + + + + + The length (in elements) of the typed array. + + + + + The length (in elements) of the typed array. + + + + + Gets a descriptor for the property with the given array index. + + The array index of the property. + A property descriptor containing the property value and attributes. + The prototype chain is not searched. + + + + Sets the value of the property with the given array index. If a property with the + given index does not exist, or exists in the prototype chain (and is not a setter) then + a new property is created. + + The array index of the property to set. + The value to set the property to. This must be a javascript + primitive (double, string, etc) or a class derived from . + The value of the "this" keyword inside a getter. + true to throw an exception if the property could not + be set. This can happen if the property is read-only or if the object is sealed. + false if is false and an error + occurred; true otherwise. + + + + Deletes the property with the given array index. + + The array index of the property to delete. + true to throw an exception if the property could not + be set because the property was marked as non-configurable. + true if the property was successfully deleted, or if the property did + not exist; false if the property was marked as non-configurable and + was false. + + + + Returns a new array iterator object that contains the key/value pairs for each index in + the array. + + An array iterator object that contains the key/value pairs for each index in + the array. + + + + Returns a new array iterator object that contains the keys for each index in the array. + + An array iterator object that contains the keys for each index in the array. + + + + Returns a new typed array on the same ArrayBuffer store and with the same element types + as for this TypedArray object. The begin offset is inclusive and the end offset is + exclusive. + + Element to begin at. The offset is inclusive. + Element to end at. The offset is exclusive. If not specified, all + elements from the one specified by begin to the end of the array are included in the + new view. + A new typed array that shares the same ArrayBuffer store. + + + + Returns a new array iterator object that contains the values for each index in the + array. + + An array iterator object that contains the values for each index in the + array. + + + + Implements an adapter for typed arrays. + + + + + Creates a new TypedArrayWrapper instance. + + The typed array that is being wrapped. + + + + Gets or sets an array element within the range 0 .. Length-1 (inclusive). + + The index to get or set. + The value at the given index. + + + + Deletes the value at the given array index, throwing an exception on error. + + The array index to delete. + + + + Indicates whether the array index exists (has a value). + + The index to check. + true if the index exists, false otherwise. + + + + Creates a new array of the same type as this one. + + The values in the new array. + A new array object. + + + + Convert an untyped value to a typed value. + + The value to convert. + The value converted to a typed value. + + + + Copies the sequence of array elements within the array to the position starting at + target. The copy is taken from the index positions of the second and third arguments + start and end. The end argument is optional and defaults to the length of the array. + This method has the same algorithm as Array.prototype.copyWithin. + + Target start index position where to copy the elements to. + Source start index position where to start copying elements from. + Optional. Source end index position where to end copying elements from. + The array that was operated on. + + + + Determines if every element of the array matches criteria defined by the given user- + defined function. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + true if every element of the array matches criteria defined by the + given user-defined function; false otherwise. + + + + Fills all the elements of a typed array from a start index to an end index with a + static value. + + The value to fill the typed array with. + Optional. Start index. Defaults to 0. + Optional. End index (exclusive). Defaults to the length of the array. + The array that is being operated on. + + + + Creates a new array with the elements from this array that pass the test implemented by + the given function. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + A copy of this array but with only those elements which produce true + when passed to the provided function. + + + + Returns the first element in the given array that passes the test implemented by the + given function. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + The first element that results in the callback returning true. + + + + Returns an index in the typed array, if an element in the typed array satisfies the + provided testing function. Otherwise -1 is returned. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + The first element that results in the callback returning true. + + + + Calls the given user-defined function once per element in the array. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. + The value of this in the context of the callback function. + + + + Returns the index of the given search element in the array, starting from + . + + The value to search for. + The array index to start searching. + The index of the given search element in the array, or -1 if the + element wasn't found. + + + + Concatenates all the elements of the array, using the specified separator between each + element. If no separator is provided, a comma is used for this purpose. + + The string to use as a separator. + A string that consists of the element values separated by the separator string. + + + + Returns the index of the given search element in the array, searching backwards from + the end of the array. + + The value to search for. + The index of the given search element in the array, or -1 if the + element wasn't found. + + + + Returns the index of the given search element in the array, searching backwards from + . + + The value to search for. + The array index to start searching. + The index of the given search element in the array, or -1 if the + element wasn't found. + + + + Creates a new array with the results of calling the given function on every element in + this array. + + A user-defined function that is called for each element + in the array. This function is called with three arguments: the value of the element, + the index of the element, and the array that is being operated on. The value that is + returned from this function is stored in the resulting array. + The value of this in the context of the callback function. + A new array with the results of calling the given function on every element + in the array. + + + + Accumulates a single value by calling a user-defined function for each element. + + A user-defined function that is called for each element + in the array. This function is called with four arguments: the current accumulated + value, the value of the element, the index of the element, and the array that is being + operated on. The return value for this function is the new accumulated value and is + passed to the next invocation of the function. + The initial accumulated value. + The accumulated value returned from the last invocation of the callback + function. + + + + Accumulates a single value by calling a user-defined function for each element + (starting with the last element in the array). + + A user-defined function that is called for each element + in the array. This function is called with four arguments: the current accumulated + value, the value of the element, the index of the element, and the array that is being + operated on. The return value for this function is the new accumulated value and is + passed to the next invocation of the function. + The initial accumulated value. + The accumulated value returned from the last invocation of the callback + function. + + + + Reverses the order of the elements in the array. + + The array that is being operated on. + + + + Stores multiple values in the typed array, reading input values from a specified array. + + The array from which to copy values. All values from the source + array are copied into the target array, unless the length of the source array plus the + offset exceeds the length of the target array, in which case an exception is thrown. + The offset into the target array at which to begin writing values + from the source array. If you omit this value, 0 is assumed (that is, the source array + will overwrite values in the target array starting at index 0). + + + + Returns a section of an array. + + The index of the first element in the section. If this value is + negative it is treated as an offset from the end of the array. + The index of the element just past the last element in the section. + If this value is negative it is treated as an offset from the end of the array. If + is less than or equal to then an empty + array is returned. + A section of an array. + + + + Determines if at least one element of the array matches criteria defined by the given + user-defined function. + + A user-defined function that is called for each element in the + array. This function is called with three arguments: the value of the element, the + index of the element, and the array that is being operated on. The function should + return true or false. + The value of this in the context of the callback function. + true if at least one element of the array matches criteria defined by + the given user-defined function; false otherwise. + + + + Sorts the array. + + A function which determines the order of the + elements. This function should return a number less than zero if the first argument is + less than the second argument, zero if the arguments are equal or a number greater than + zero if the first argument is greater than Defaults to an ascending ASCII ordering. + The array that was sorted. + + + + Returns a locale-specific string representing this object. + + A locale-specific string representing this object. + + + + Returns a string representing this object. + + The array that is being operated on. + A string representing this object. + + + + Defines the element type and behaviour of typed array. + + + + + An array of signed 8-bit elements. + + + + + An array of unsigned 8-bit elements. + + + + + An array of unsigned 8-bit elements, clamped to 0-255. + + + + + An array of signed 16-bit elements. + + + + + An array of unsigned 16-bit elements. + + + + + An array of signed 32-bit elements. + + + + + An array of unsigned 32-bit elements. + + + + + An array of 32-bit floating point elements. + + + + + An array of 64-bit floating point elements. + + + + + The WeakMap object is a collection of key/value pairs in which the keys are weakly + referenced. The keys must be objects and the values can be arbitrary values. + + + + + Creates a new map constructor. + + The next object in the prototype chain. + + + + Called when the WeakMap object is invoked like a function, e.g. var x = WeakMap(). + Throws an error. + + + + + Creates a new WeakMap. + + An Array or other iterable object whose elements are key-value + pairs (2-element Arrays). Each key-value pair is added to the new WeakMap. null + is treated as undefined. + A new WeakMap object, either empty or initialised with the given values. + + + + The WeakMap object is a collection of key/value pairs in which the keys are weakly + referenced. The keys must be objects and the values can be arbitrary values. + + + + + Creates a new WeakMap instance. + + The next object in the prototype chain. + + + + Creates the WeakMap prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + Removes the specified element from a Map object. + + The key of the element to remove from the Map object. + true if an element in the Map object existed and has been removed, or + false if the element does not exist. + + + + Returns a specified element from a Map object. + + The key of the element to return from the Map object. + The element associated with the specified key, or undefined if the key can't + be found in the Map object. + + + + Returns a boolean indicating whether an element with the specified key exists or not. + + The key of the element to test for presence in the Map object. + true if an element with the specified key exists in the Map object; + otherwise false. + + + + Adds a new element with a specified key and value to a Map object. + + The key of the element to add to the Map object. + The value of the element to add to the Map object. + The WeakMap object. + + + + Gets the internal storage. Used by debugger decoration. + + + + + The WeakSet object lets you store weakly held objects in a collection. + + + + + Creates a new WeakSet constructor. + + The next object in the prototype chain. + + + + Called when the WeakSet object is invoked like a function, e.g. var x = WeakSet(). + Throws an error. + + + + + Creates a new WeakSet instance. + + If an iterable object is passed, all of its elements will be + added to the new WeakSet. null is treated as undefined. + A new WeakSet instance. + + + + The WeakSet object lets you store weakly held objects in a collection. + + + + + Creates a new WeakSet instance. + + The next object in the prototype chain. + + + + Creates the WeakSet prototype object. + + The script environment. + A reference to the constructor that owns the prototype. + + + + Appends a new element with a specified value to the end of the WeakSet. + + The value of the element to add to the WeakSet. + The WeakSet object. + + + + Removes the specified value from the WeakSet. + + The value of the element to remove from the WeakSet. + true if an element in the WeakSet object has been removed + successfully; otherwise false. + + + + Returns a boolean indicating whether an element with the specified value exists in the + WeakSet or not. + + The value to test for presence in the WeakSet. + true if an element with the specified value exists in the WeakSet + object; otherwise false. + + + + Gets the internal storage. Used by debugger decoration. + + + + diff --git a/packages/Stef.Validation.0.0.4/.signature.p7s b/packages/Stef.Validation.0.0.4/.signature.p7s new file mode 100755 index 0000000..4164288 Binary files /dev/null and b/packages/Stef.Validation.0.0.4/.signature.p7s differ diff --git a/packages/Stef.Validation.0.0.4/Stef.Validation.0.0.4.nupkg b/packages/Stef.Validation.0.0.4/Stef.Validation.0.0.4.nupkg new file mode 100755 index 0000000..fb680a5 Binary files /dev/null and b/packages/Stef.Validation.0.0.4/Stef.Validation.0.0.4.nupkg differ diff --git a/packages/Stef.Validation.0.0.4/lib/net20/Stef.Validation.dll b/packages/Stef.Validation.0.0.4/lib/net20/Stef.Validation.dll new file mode 100755 index 0000000..3e8cd7e Binary files /dev/null and b/packages/Stef.Validation.0.0.4/lib/net20/Stef.Validation.dll differ diff --git a/packages/Stef.Validation.0.0.4/lib/net35/Stef.Validation.dll b/packages/Stef.Validation.0.0.4/lib/net35/Stef.Validation.dll new file mode 100755 index 0000000..e7ad025 Binary files /dev/null and b/packages/Stef.Validation.0.0.4/lib/net35/Stef.Validation.dll differ diff --git a/packages/Stef.Validation.0.0.4/lib/net40/Stef.Validation.dll b/packages/Stef.Validation.0.0.4/lib/net40/Stef.Validation.dll new file mode 100755 index 0000000..0f56674 Binary files /dev/null and b/packages/Stef.Validation.0.0.4/lib/net40/Stef.Validation.dll differ diff --git a/packages/Stef.Validation.0.0.4/lib/netstandard1.0/Stef.Validation.dll b/packages/Stef.Validation.0.0.4/lib/netstandard1.0/Stef.Validation.dll new file mode 100755 index 0000000..6358aff Binary files /dev/null and b/packages/Stef.Validation.0.0.4/lib/netstandard1.0/Stef.Validation.dll differ diff --git a/packages/Stef.Validation.0.0.4/lib/netstandard1.3/Stef.Validation.dll b/packages/Stef.Validation.0.0.4/lib/netstandard1.3/Stef.Validation.dll new file mode 100755 index 0000000..41e5313 Binary files /dev/null and b/packages/Stef.Validation.0.0.4/lib/netstandard1.3/Stef.Validation.dll differ diff --git a/packages/Stef.Validation.0.0.4/lib/netstandard2.0/Stef.Validation.dll b/packages/Stef.Validation.0.0.4/lib/netstandard2.0/Stef.Validation.dll new file mode 100755 index 0000000..a3c7b0e Binary files /dev/null and b/packages/Stef.Validation.0.0.4/lib/netstandard2.0/Stef.Validation.dll differ diff --git a/packages/Stef.Validation.0.0.4/lib/netstandard2.1/Stef.Validation.dll b/packages/Stef.Validation.0.0.4/lib/netstandard2.1/Stef.Validation.dll new file mode 100755 index 0000000..8c9f62e Binary files /dev/null and b/packages/Stef.Validation.0.0.4/lib/netstandard2.1/Stef.Validation.dll differ diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/.nupkg.metadata b/packages/System.Reflection.Emit.Lightweight.4.3.0/.nupkg.metadata new file mode 100644 index 0000000..00a5b24 --- /dev/null +++ b/packages/System.Reflection.Emit.Lightweight.4.3.0/.nupkg.metadata @@ -0,0 +1,5 @@ +{ + "version": 2, + "contentHash": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "source": "https://api.nuget.org/v3/index.json" +} \ No newline at end of file diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/.signature.p7s b/packages/System.Reflection.Emit.Lightweight.4.3.0/.signature.p7s new file mode 100755 index 0000000..3feb047 Binary files /dev/null and b/packages/System.Reflection.Emit.Lightweight.4.3.0/.signature.p7s differ diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/System.Reflection.Emit.Lightweight.4.3.0.nupkg b/packages/System.Reflection.Emit.Lightweight.4.3.0/System.Reflection.Emit.Lightweight.4.3.0.nupkg new file mode 100755 index 0000000..56481cb Binary files /dev/null and b/packages/System.Reflection.Emit.Lightweight.4.3.0/System.Reflection.Emit.Lightweight.4.3.0.nupkg differ diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/ThirdPartyNotices.txt b/packages/System.Reflection.Emit.Lightweight.4.3.0/ThirdPartyNotices.txt new file mode 100755 index 0000000..55cfb20 --- /dev/null +++ b/packages/System.Reflection.Emit.Lightweight.4.3.0/ThirdPartyNotices.txt @@ -0,0 +1,31 @@ +This Microsoft .NET Library may incorporate components from the projects listed +below. Microsoft licenses these components under the Microsoft .NET Library +software license terms. The original copyright notices and the licenses under +which Microsoft received such components are set forth below for informational +purposes only. Microsoft reserves all rights not expressly granted herein, +whether by implication, estoppel or otherwise. + +1. .NET Core (https://github.com/dotnet/core/) + +.NET Core +Copyright (c) .NET Foundation and Contributors + +The MIT License (MIT) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/dotnet_library_license.txt b/packages/System.Reflection.Emit.Lightweight.4.3.0/dotnet_library_license.txt new file mode 100755 index 0000000..92b6c44 --- /dev/null +++ b/packages/System.Reflection.Emit.Lightweight.4.3.0/dotnet_library_license.txt @@ -0,0 +1,128 @@ + +MICROSOFT SOFTWARE LICENSE TERMS + + +MICROSOFT .NET LIBRARY + +These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft + +· updates, + +· supplements, + +· Internet-based services, and + +· support services + +for this software, unless other terms accompany those items. If so, those terms apply. + +BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE. + + +IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE PERPETUAL RIGHTS BELOW. + +1. INSTALLATION AND USE RIGHTS. + +a. Installation and Use. You may install and use any number of copies of the software to design, develop and test your programs. + +b. Third Party Programs. The software may include third party programs that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party program are included for your information only. + +2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS. + +a. DISTRIBUTABLE CODE. The software is comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in programs you develop if you comply with the terms below. + +i. Right to Use and Distribute. + +· You may copy and distribute the object code form of the software. + +· Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs. + +ii. Distribution Requirements. For any Distributable Code you distribute, you must + +· add significant primary functionality to it in your programs; + +· require distributors and external end users to agree to terms that protect it at least as much as this agreement; + +· display your valid copyright notice on your programs; and + +· indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your programs. + +iii. Distribution Restrictions. You may not + +· alter any copyright, trademark or patent notice in the Distributable Code; + +· use Microsoft’s trademarks in your programs’ names or in a way that suggests your programs come from or are endorsed by Microsoft; + +· include Distributable Code in malicious, deceptive or unlawful programs; or + +· modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that + +· the code be disclosed or distributed in source code form; or + +· others have the right to modify it. + +3. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not + +· work around any technical limitations in the software; + +· reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation; + +· publish the software for others to copy; + +· rent, lease or lend the software; + +· transfer the software or this agreement to any third party; or + +· use the software for commercial software hosting services. + +4. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software. + +5. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes. + +6. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting. + +7. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it. + +8. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. + +9. APPLICABLE LAW. + +a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort. + +b. Outside the United States. If you acquired the software in any other country, the laws of that country apply. + +10. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so. + +11. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS OR STATUTORY GUARANTEES UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. + +FOR AUSTRALIA – YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS. + +12. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. + +This limitation applies to + +· anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and + +· claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. + +It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. + +Please note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French. + +Remarque : Ce logiciel étant distribué au Québec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en français. + +EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute utilisation de ce logiciel est à votre seule risque et péril. Microsoft n’accorde aucune autre garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualité marchande, d’adéquation à un usage particulier et d’absence de contrefaçon sont exclues. + +LIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices. + +Cette limitation concerne : + +· tout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et + +· les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par la loi en vigueur. + +Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard. + +EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. + + diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/MonoAndroid10/_._ b/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/MonoAndroid10/_._ new file mode 100755 index 0000000..e69de29 diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/MonoTouch10/_._ b/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/MonoTouch10/_._ new file mode 100755 index 0000000..e69de29 diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/net45/_._ b/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/net45/_._ new file mode 100755 index 0000000..e69de29 diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/netcore50/System.Reflection.Emit.Lightweight.dll b/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/netcore50/System.Reflection.Emit.Lightweight.dll new file mode 100755 index 0000000..a7aaa57 Binary files /dev/null and b/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/netcore50/System.Reflection.Emit.Lightweight.dll differ diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll b/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll new file mode 100755 index 0000000..d7b76e7 Binary files /dev/null and b/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll differ diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/portable-net45+wp8/_._ b/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/portable-net45+wp8/_._ new file mode 100755 index 0000000..e69de29 diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/wp80/_._ b/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/wp80/_._ new file mode 100755 index 0000000..e69de29 diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/xamarinios10/_._ b/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/xamarinios10/_._ new file mode 100755 index 0000000..e69de29 diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/xamarinmac20/_._ b/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/xamarinmac20/_._ new file mode 100755 index 0000000..e69de29 diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/xamarintvos10/_._ b/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/xamarintvos10/_._ new file mode 100755 index 0000000..e69de29 diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/xamarinwatchos10/_._ b/packages/System.Reflection.Emit.Lightweight.4.3.0/lib/xamarinwatchos10/_._ new file mode 100755 index 0000000..e69de29 diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/MonoAndroid10/_._ b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/MonoAndroid10/_._ new file mode 100755 index 0000000..e69de29 diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/MonoTouch10/_._ b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/MonoTouch10/_._ new file mode 100755 index 0000000..e69de29 diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/net45/_._ b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/net45/_._ new file mode 100755 index 0000000..e69de29 diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll new file mode 100755 index 0000000..5a50a63 Binary files /dev/null and b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll differ diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml new file mode 100755 index 0000000..542af16 --- /dev/null +++ b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml @@ -0,0 +1,177 @@ + + + + System.Reflection.Emit.Lightweight + + + + Defines and represents a dynamic method that can be compiled, executed, and discarded. Discarded methods are available for garbage collection. + + + Creates a dynamic method that is global to a module, specifying the method name, attributes, calling convention, return type, parameter types, module, and whether just-in-time (JIT) visibility checks should be skipped for types and members accessed by the Microsoft intermediate language (MSIL) of the dynamic method. + The name of the dynamic method. This can be a zero-length string, but it cannot be null. + A bitwise combination of values that specifies the attributes of the dynamic method. The only combination allowed is and . + The calling convention for the dynamic method. Must be . + A object that specifies the return type of the dynamic method, or null if the method has no return type. + An array of objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. + A representing the module with which the dynamic method is to be logically associated. + true to skip JIT visibility checks on types and members accessed by the MSIL of the dynamic method; otherwise, false. + An element of is null or .-or- is a module that provides anonymous hosting for dynamic methods. + + is null. -or- is null. + + is a combination of flags other than and .-or- is not .-or- is a type for which returns true. + + + Creates a dynamic method, specifying the method name, attributes, calling convention, return type, parameter types, the type with which the dynamic method is logically associated, and whether just-in-time (JIT) visibility checks should be skipped for types and members accessed by the Microsoft intermediate language (MSIL) of the dynamic method. + The name of the dynamic method. This can be a zero-length string, but it cannot be null. + A bitwise combination of values that specifies the attributes of the dynamic method. The only combination allowed is and . + The calling convention for the dynamic method. Must be . + A object that specifies the return type of the dynamic method, or null if the method has no return type. + An array of objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. + A with which the dynamic method is logically associated. The dynamic method has access to all members of the type. + true to skip JIT visibility checks on types and members accessed by the MSIL of the dynamic method; otherwise, false. + An element of is null or . -or- is an interface, an array, an open generic type, or a type parameter of a generic type or method. + + is null. -or- is null. + + is a combination of flags other than and .-or- is not .-or- is a type for which returns true. + + + Initializes an anonymously hosted dynamic method, specifying the method name, return type, and parameter types. + The name of the dynamic method. This can be a zero-length string, but it cannot be null. + A object that specifies the return type of the dynamic method, or null if the method has no return type. + An array of objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. + An element of is null or . + + is null. + + is a type for which returns true. + + + Initializes an anonymously hosted dynamic method, specifying the method name, return type, parameter types, and whether just-in-time (JIT) visibility checks should be skipped for types and members accessed by the Microsoft intermediate language (MSIL) of the dynamic method. + The name of the dynamic method. This can be a zero-length string, but it cannot be null. + A object that specifies the return type of the dynamic method, or null if the method has no return type. + An array of objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. + true to skip JIT visibility checks on types and members accessed by the MSIL of the dynamic method, with this restriction: the trust level of the assemblies that contain those types and members must be equal to or less than the trust level of the call stack that emits the dynamic method; otherwise, false. + An element of is null or . + + is null. + + is a type for which returns true. + + + Creates a dynamic method that is global to a module, specifying the method name, return type, parameter types, and module. + The name of the dynamic method. This can be a zero-length string, but it cannot be null. + A object that specifies the return type of the dynamic method, or null if the method has no return type. + An array of objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. + A representing the module with which the dynamic method is to be logically associated. + An element of is null or . -or- is a module that provides anonymous hosting for dynamic methods. + + is null. -or- is null. + + is a type for which returns true. + + + Creates a dynamic method that is global to a module, specifying the method name, return type, parameter types, module, and whether just-in-time (JIT) visibility checks should be skipped for types and members accessed by the Microsoft intermediate language (MSIL) of the dynamic method. + The name of the dynamic method. This can be a zero-length string, but it cannot be null. + A object that specifies the return type of the dynamic method, or null if the method has no return type. + An array of objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. + A representing the module with which the dynamic method is to be logically associated. + true to skip JIT visibility checks on types and members accessed by the MSIL of the dynamic method. + An element of is null or . -or- is a module that provides anonymous hosting for dynamic methods. + + is null. -or- is null. + + is a type for which returns true. + + + Creates a dynamic method, specifying the method name, return type, parameter types, and the type with which the dynamic method is logically associated. + The name of the dynamic method. This can be a zero-length string, but it cannot be null. + A object that specifies the return type of the dynamic method, or null if the method has no return type. + An array of objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. + A with which the dynamic method is logically associated. The dynamic method has access to all members of the type. + An element of is null or .-or- is an interface, an array, an open generic type, or a type parameter of a generic type or method. + + is null. -or- is null. + + is null, or is a type for which returns true. + + + Creates a dynamic method, specifying the method name, return type, parameter types, the type with which the dynamic method is logically associated, and whether just-in-time (JIT) visibility checks should be skipped for types and members accessed by the Microsoft intermediate language (MSIL) of the dynamic method. + The name of the dynamic method. This can be a zero-length string, but it cannot be null. + A object that specifies the return type of the dynamic method, or null if the method has no return type. + An array of objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters. + A with which the dynamic method is logically associated. The dynamic method has access to all members of the type. + true to skip JIT visibility checks on types and members accessed by the MSIL of the dynamic method; otherwise, false. + An element of is null or .-or- is an interface, an array, an open generic type, or a type parameter of a generic type or method. + + is null. -or- is null. + + is null, or is a type for which returns true. + + + Gets the attributes specified when the dynamic method was created. + A bitwise combination of the values representing the attributes for the method. + + + Gets the calling convention specified when the dynamic method was created. + One of the values that indicates the calling convention of the method. + + + Completes the dynamic method and creates a delegate that can be used to execute it. + A delegate of the specified type, which can be used to execute the dynamic method. + A delegate type whose signature matches that of the dynamic method. + The dynamic method has no method body. + + has the wrong number of parameters or the wrong parameter types. + + + Completes the dynamic method and creates a delegate that can be used to execute it, specifying the delegate type and an object the delegate is bound to. + A delegate of the specified type, which can be used to execute the dynamic method with the specified target object. + A delegate type whose signature matches that of the dynamic method, minus the first parameter. + An object the delegate is bound to. Must be of the same type as the first parameter of the dynamic method. + The dynamic method has no method body. + + is not the same type as the first parameter of the dynamic method, and is not assignable to that type.-or- has the wrong number of parameters or the wrong parameter types. + + + Gets the type that declares the method, which is always null for dynamic methods. + Always null. + + + Returns a Microsoft intermediate language (MSIL) generator for the method with a default MSIL stream size of 64 bytes. + An object for the method. + + + Returns a Microsoft intermediate language (MSIL) generator for the method with the specified MSIL stream size. + An object for the method, with the specified MSIL stream size. + The size of the MSIL stream, in bytes. + + + Returns the parameters of the dynamic method. + An array of objects that represent the parameters of the dynamic method. + + + Gets or sets a value indicating whether the local variables in the method are zero-initialized. + true if the local variables in the method are zero-initialized; otherwise, false. The default is true. + + + + Gets the name of the dynamic method. + The simple name of the method. + + + Gets the return parameter of the dynamic method. + Always null. + + + Gets the type of return value for the dynamic method. + A representing the type of the return value of the current method; if the method has no return type. + + + Returns the signature of the method, represented as a string. + A string representing the method signature. + + + \ No newline at end of file diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml new file mode 100755 index 0000000..b6e39f2 --- /dev/null +++ b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml @@ -0,0 +1,177 @@ + + + + System.Reflection.Emit.Lightweight + + + + Definiert und stellt eine dynamische Methode dar, die kompiliert ausgeführt und verworfen werden kann.Verworfene Methoden sind für die Garbage Collection verfügbar. + + + Erstellt eine dynamische Methode, die in einem Modul global ist, unter Angabe von Methodenname, Attributen, Aufrufkonvention, Rückgabetyp, Parametertypen und Modul sowie, ob Just-In-Time (JIT)-Sichtbarkeitsprüfungen für Typen und Member übersprungen werden sollen, auf die von der Microsoft intermediate language (MSIL) der dynamischen Methode zugegriffen wird. + Der Name der dynamischen Methode.Die Zeichenfolge kann die Länge 0 (null) haben, darf aber nicht null sein. + Eine bitweise Kombination von -Werten, die die Attribute der dynamischen Methode angibt.Die einzige zulässige Kombination ist und . + Die Aufrufkonvention für die dynamische Methode.Dieser Wert muss sein. + Ein -Objekt, das den Rückgabetyp der dynamischen Methode angibt, oder null, wenn die Methode über keinen Rückgabetyp verfügt. + Ein Array von -Objekten, die die Parametertypen der dynamischen Methode angeben, oder null, wenn die Methode über keine Parameter verfügt. + Ein , das das Modul darstellt, dem die dynamische Methode logisch zugeordnet ist. + true, wenn bei Zugriffen durch die MSIL der dynamischen Methode JIT-Sichtbarkeitsprüfungen für Typen und Member übersprungen werden, andernfalls false. + Ein Element von ist null oder .- oder - ist ein Modul, das anonymes Hosting für dynamische Methoden bereitstellt. + + ist null. - oder - ist null. + + ist eine Kombination aus anderen Flags als und .- oder - ist nicht .- oder - ist ein Typ, für den true zurückgibt. + + + Erstellt eine dynamische Methode unter Angabe von Methodenname, Attributen, Aufrufkonvention, Rückgabetyp, Parametertypen, dem Typ, dem die dynamische Methode logisch zugeordnet ist, sowie, ob Just-In-Time (JIT)-Sichtbarkeitsprüfungen für Typen und Member bei Zugriffen durch die Microsoft Intermediate Language (MSIL) der dynamischen Methode übersprungen werden. + Der Name der dynamischen Methode.Die Zeichenfolge kann die Länge 0 (null) haben, darf aber nicht null sein. + Eine bitweise Kombination von -Werten, die die Attribute der dynamischen Methode angibt.Die einzige zulässige Kombination ist und . + Die Aufrufkonvention für die dynamische Methode.Dieser Wert muss sein. + Ein -Objekt, das den Rückgabetyp der dynamischen Methode angibt, oder null, wenn die Methode über keinen Rückgabetyp verfügt. + Ein Array von -Objekten, die die Parametertypen der dynamischen Methode angeben, oder null, wenn die Methode über keine Parameter verfügt. + Ein , dem die dynamische Methode logisch zugeordnet ist.Die dynamische Methode hat Zugriff auf alle Member des Typs. + true, wenn bei Zugriffen durch die MSIL der dynamischen Methode JIT-Sichtbarkeitsprüfungen für Typen und Member übersprungen werden, andernfalls false. + Ein Element von ist null oder . - oder - ist eine Schnittstelle, ein Array, ein offener generischer Typ oder ein Typparameter eines generischen Typs oder einer generischen Methode. + + ist null. - oder - ist null. + + ist eine Kombination aus anderen Flags als und .- oder - ist nicht .- oder - ist ein Typ, für den true zurückgibt. + + + Initialisiert eine anonym gehostete dynamische Methode und gibt den Methodennamen, Rückgabetyp und Parametertypen an. + Der Name der dynamischen Methode.Die Zeichenfolge kann die Länge 0 (null) haben, darf aber nicht null sein. + Ein -Objekt, das den Rückgabetyp der dynamischen Methode angibt, oder null, wenn die Methode über keinen Rückgabetyp verfügt. + Ein Array von -Objekten, die die Parametertypen der dynamischen Methode angeben, oder null, wenn die Methode über keine Parameter verfügt. + Ein Element von ist null oder . + + ist null. + + ist ein Typ, für den true zurückgibt. + + + Initialisiert eine anonym gehostete dynamische Methode unter Angabe von Methodenname, Rückgabetyp und Parametertypen sowie, ob Just-In-Time (JIT)-Sichtbarkeitsprüfungen für Typen und Member übersprungen werden sollen, auf die von der Microsoft intermediate language (MSIL) der dynamischen Methode zugegriffen wird. + Der Name der dynamischen Methode.Die Zeichenfolge kann die Länge 0 (null) haben, darf aber nicht null sein. + Ein -Objekt, das den Rückgabetyp der dynamischen Methode angibt, oder null, wenn die Methode über keinen Rückgabetyp verfügt. + Ein Array von -Objekten, die die Parametertypen der dynamischen Methode angeben, oder null, wenn die Methode über keine Parameter verfügt. + true, wenn JIT-Sichtbarkeitsprüfungen für Typen und Member bei Zugriffen durch die MSIL der dynamischen Methode übersprungen werden sollen, mit folgender Einschränkung: die Vertrauensebene der Assemblys, die diese Typen und Member enthalten, muss identisch sein mit oder kleiner sein als die Vertrauensebene der Aufrufliste, die die dynamische Methode ausgibt, andernfalls false. + Ein Element von ist null oder . + + ist null. + + ist ein Typ, für den true zurückgibt. + + + Erstellt eine dynamische Methode, die zu einem Modul global ist, unter Angabe von Methodenname, Rückgabetyp, Parametertypen und Modul. + Der Name der dynamischen Methode.Die Zeichenfolge kann die Länge 0 (null) haben, darf aber nicht null sein. + Ein -Objekt, das den Rückgabetyp der dynamischen Methode angibt, oder null, wenn die Methode über keinen Rückgabetyp verfügt. + Ein Array von -Objekten, die die Parametertypen der dynamischen Methode angeben, oder null, wenn die Methode über keine Parameter verfügt. + Ein , das das Modul darstellt, dem die dynamische Methode logisch zugeordnet ist. + Ein Element von ist null oder . - oder - ist ein Modul, das anonymes Hosting für dynamische Methoden bereitstellt. + + ist null. - oder - ist null. + + ist ein Typ, für den true zurückgibt. + + + Erstellt eine dynamische Methode, die in einem Modul global ist, unter Angabe von Methodenname, Rückgabetyp, Parametertypen und Modul sowie, ob Just-In-Time (JIT)-Sichtbarkeitsprüfungen für Typen und Member übersprungen werden sollen, auf die von der Microsoft intermediate language (MSIL) der dynamischen Methode zugegriffen wird. + Der Name der dynamischen Methode.Die Zeichenfolge kann die Länge 0 (null) haben, darf aber nicht null sein. + Ein -Objekt, das den Rückgabetyp der dynamischen Methode angibt, oder null, wenn die Methode über keinen Rückgabetyp verfügt. + Ein Array von -Objekten, die die Parametertypen der dynamischen Methode angeben, oder null, wenn die Methode über keine Parameter verfügt. + Ein , das das Modul darstellt, dem die dynamische Methode logisch zugeordnet ist. + true, wenn bei Zugriffen durch die MSIL der dynamischen Methode JIT-Sichtbarkeitsprüfungen für Typen und Member übersprungen werden + Ein Element von ist null oder . - oder - ist ein Modul, das anonymes Hosting für dynamische Methoden bereitstellt. + + ist null. - oder - ist null. + + ist ein Typ, für den true zurückgibt. + + + Erstellt eine dynamische Methode unter Angabe von Methodenname, Rückgabetyp, Parametertypen und dem Typ, dem die dynamische Methode logisch zugeordnet ist. + Der Name der dynamischen Methode.Die Zeichenfolge kann die Länge 0 (null) haben, darf aber nicht null sein. + Ein -Objekt, das den Rückgabetyp der dynamischen Methode angibt, oder null, wenn die Methode über keinen Rückgabetyp verfügt. + Ein Array von -Objekten, die die Parametertypen der dynamischen Methode angeben, oder null, wenn die Methode über keine Parameter verfügt. + Ein , dem die dynamische Methode logisch zugeordnet ist.Die dynamische Methode hat Zugriff auf alle Member des Typs. + Ein Element von ist null oder .- oder - ist eine Schnittstelle, ein Array, ein offener generischer Typ oder ein Typparameter eines generischen Typs oder einer generischen Methode. + + ist null. - oder - ist null. + + ist null oder ein Typ, für den true zurückgibt. + + + Erstellt eine dynamische Methode unter Angabe von Methodenname, Rückgabetyp, Parametertypen, dem Typ, dem die dynamische Methode logisch zugeordnet ist, sowie, ob Just-In-Time (JIT)-Sichtbarkeitsprüfungen für Typen und Member bei Zugriffen durch die Microsoft Intermediate Language (MSIL) der dynamischen Methode übersprungen werden. + Der Name der dynamischen Methode.Die Zeichenfolge kann die Länge 0 (null) haben, darf aber nicht null sein. + Ein -Objekt, das den Rückgabetyp der dynamischen Methode angibt, oder null, wenn die Methode über keinen Rückgabetyp verfügt. + Ein Array von -Objekten, die die Parametertypen der dynamischen Methode angeben, oder null, wenn die Methode über keine Parameter verfügt. + Ein , dem die dynamische Methode logisch zugeordnet ist.Die dynamische Methode hat Zugriff auf alle Member des Typs. + true, wenn bei Zugriffen durch die MSIL der dynamischen Methode JIT-Sichtbarkeitsprüfungen für Typen und Member übersprungen werden, andernfalls false. + Ein Element von ist null oder .- oder - ist eine Schnittstelle, ein Array, ein offener generischer Typ oder ein Typparameter eines generischen Typs oder einer generischen Methode. + + ist null. - oder - ist null. + + ist null oder ein Typ, für den true zurückgibt. + + + Ruft die beim Erstellen der dynamischen Methode angegebenen Attribute ab. + Eine bitweise Kombination der -Werte, die die Attribute für die Methode darstellen. + + + Ruft die beim Erstellen der dynamischen Methode angegebene Aufrufkonvention ab. + Einer der -Werte, der die Aufrufkonvention der Methode angibt. + + + Vervollständigt die dynamische Methode und erstellt einen Delegaten, mit der sie ausgeführt werden kann. + Ein Delegat des angegebenen Typs, mit dem die dynamische Methode ausgeführt werden kann. + Ein Delegattyp, dessen Signatur der der dynamischen Methode entspricht. + Die dynamische Methode verfügt über keinen Methodentext. + + hat die falsche Anzahl von Parametern oder die falschen Parametertypen. + + + Vervollständigt die dynamische Methode und erstellt einen Delegaten, mit dem diese ausgeführt werden kann, unter Angabe des Delegattyps und eines Objekts, an das der Delegat gebunden ist. + Ein Delegat des angegebenen Typs, mit dem die dynamische Methode für das angegebene Zielobjekt ausgeführt werden kann. + Ein Delegattyp, dessen Signatur der der dynamischen Methode ohne den ersten Parameter entspricht. + Ein Objekt, an das der Delegat gebunden ist.Dieses muss von demselben Typ wie der erste Parameter der dynamischen Methode sein. + Die dynamische Methode verfügt über keinen Methodentext. + + ist nicht von demselben Typ wie der erste Parameter der dynamischen Methode und kann diesem Typ nicht zugeordnet werden.- oder - hat die falsche Anzahl von Parametern oder die falschen Parametertypen. + + + Ruft den Typ ab, der die Methode deklariert, die für dynamische Methoden immer null ist. + Immer null. + + + Gibt einen MSIL-Generator (Microsoft Intermediate Language) für die Methode mit einer MSIL-Standardstreamgröße von 64 Bytes zurück. + Ein -Objekt für die Methode. + + + Gibt einen MSIL-Generator (Microsoft Intermediate Language) für die Methode mit der angegebenen MSIL-Streamgröße zurück. + Ein -Objekt für die Methode mit der angegebenen MSIL-Streamgröße. + Die Größe des MSIL-Streams in Bytes. + + + Gibt die Parameter der dynamischen Methode zurück. + Ein Array von -Objekten, die die Parameter der dynamischen Methode darstellen. + + + Ruft einen Wert ab, der angibt, ob die lokalen Variablen in der Methode mit 0 (null) initialisiert werden, oder legt diesen fest. + true, wenn die lokalen Variablen in der Methode mit 0 (null) initialisiert werden, andernfalls false.Die Standardeinstellung ist true. + + + + Ruft den Namen der dynamischen Methode ab. + Der einfache Name der Methode. + + + Ruft den Rückgabeparameter der dynamischen Methode ab. + Immer null. + + + Ruft den Typ des Rückgabewerts für die dynamische Methode ab. + Ein , der den Typ des Rückgabewerts der aktuellen Methode darstellt, , wenn die Methode über keinen Rückgabetyp verfügt. + + + Gibt die Signatur der Methode als Zeichenfolge zurück. + Eine Zeichenfolge, die die Methodensignatur darstellt. + + + \ No newline at end of file diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml new file mode 100755 index 0000000..5de4dd3 --- /dev/null +++ b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml @@ -0,0 +1,182 @@ + + + + System.Reflection.Emit.Lightweight + + + + Define y representa un método dinámico que se puede compilar, ejecutar y descartar.Los métodos descartados están disponibles para la recolección de elementos no utilizados. + + + Crea un método dinámico que es global para un módulo, especificando el nombre del método, sus atributos, la convención de llamada, el tipo de valor devuelto, los tipos de parámetro, el módulo, y si las comprobaciones de visibilidad Just-In-Time (JIT) se deben omitir para los tipos y miembros a los que obtiene acceso el Lenguaje intermedio de Microsoft (MSIL) del método dinámico. + Nombre del método dinámico.Puede ser una cadena de longitud cero, pero no el valor null. + Combinación bit a bit de valores de que especifica los atributos del método dinámico.La única combinación permitida es y . + Convención de llamada para el método dinámico.Debe ser . + Objeto que especifica el tipo de valor devuelto del método dinámico, o null si el método no tiene ningún tipo de valor devuelto. + Matriz de objetos que especifica los tipos de los parámetros del método dinámico, o null si el método no tiene parámetros. + + que representa el módulo al que se va a asociar lógicamente el método dinámico. + true para omitir las comprobaciones de visibilidad JIT en tipos y miembros a los que obtiene acceso el Lenguaje intermedio de Microsoft (MSIL) del método dinámico; de lo contrario, false. + Un elemento de es null o .O bien es un módulo que proporciona hospedaje anónimo a los métodos dinámicos. + + es null. O bien es null. + + es una combinación de marcadores diferente de y .O bien no es .O bien es un tipo para el que devuelve true. + + + Crea un método dinámico especificando el nombre del método, sus atributos, la convención de llamada, el tipo de valor devuelto, los tipos de parámetro, el tipo al que está asociado lógicamente el método dinámico, y si las comprobaciones de visibilidad Just-In-Time (JIT) se deben omitir para los tipos y los miembros a los que tiene acceso el Lenguaje Intermedio de Microsoft (MSIL) del método dinámico. + Nombre del método dinámico.Puede ser una cadena de longitud cero, pero no el valor null. + Combinación bit a bit de valores de que especifica los atributos del método dinámico.La única combinación permitida es y . + Convención de llamada para el método dinámico.Debe ser . + Objeto que especifica el tipo de valor devuelto del método dinámico, o null si el método no tiene ningún tipo de valor devuelto. + Matriz de objetos que especifica los tipos de los parámetros del método dinámico, o null si el método no tiene parámetros. + + al que está asociado lógicamente el método dinámico.El método dinámico tiene acceso a todos los miembros del tipo. + true para omitir las comprobaciones de visibilidad JIT en tipos y miembros a los que obtiene acceso el Lenguaje intermedio de Microsoft (MSIL) del método dinámico; de lo contrario, false. + Un elemento de es null o . O bien es una interfaz, una matriz, un tipo genérico abierto o un parámetro de tipo de un método o tipo genérico. + + es null. O bien es null. + + es una combinación de marcadores diferente de y .O bien no es .O bien es un tipo para el que devuelve true. + + + Inicializa un método dinámico que está hospedado de forma anónima especificando el nombre del método, el tipo de valor devuelto y los tipos de parámetro. + Nombre del método dinámico.Puede ser una cadena de longitud cero, pero no el valor null. + Objeto que especifica el tipo de valor devuelto del método dinámico, o null si el método no tiene ningún tipo de valor devuelto. + Matriz de objetos que especifica los tipos de los parámetros del método dinámico, o null si el método no tiene parámetros. + Un elemento de es null o . + + es null. + + es un tipo para el que devuelve true. + + + Inicializa un método dinámico hospedado de forma anónima especificando el nombre del método, el tipo de valor devuelto, los tipos de parámetro y si las comprobaciones de visibilidad Just-In-Time (JIT) deberían omitirse en los tipos y miembros a los que obtiene acceso el Lenguaje intermedio de Microsoft (MSIL) del método dinámico. + Nombre del método dinámico.Puede ser una cadena de longitud cero, pero no el valor null. + Objeto que especifica el tipo de valor devuelto del método dinámico, o null si el método no tiene ningún tipo de valor devuelto. + Matriz de objetos que especifica los tipos de los parámetros del método dinámico, o null si el método no tiene parámetros. + true si se van a omitir las comprobaciones de visibilidad JIT en los tipos y miembros a los que tiene acceso el Lenguaje intermedio de Microsoft (MSIL) del método dinámico, con esta restricción: el nivel de confianza de los ensamblados que contienen esos tipos y miembros debe ser igual o menor que el nivel de confianza de la pila de llamadas que emite el método dinámico; de lo contrario, false. + Un elemento de es null o . + + es null. + + es un tipo para el que devuelve true. + + + Crea un método dinámico que es global para un módulo, especificando el nombre del método, el tipo de valor devuelto, los tipos de parámetro y el módulo. + Nombre del método dinámico.Puede ser una cadena de longitud cero, pero no el valor null. + Objeto que especifica el tipo de valor devuelto del método dinámico, o null si el método no tiene ningún tipo de valor devuelto. + Matriz de objetos que especifica los tipos de los parámetros del método dinámico, o null si el método no tiene parámetros. + + que representa el módulo al que se va a asociar lógicamente el método dinámico. + Un elemento de es null o . O bien es un módulo que proporciona hospedaje anónimo a los métodos dinámicos. + + es null. O bien es null. + + es un tipo para el que devuelve true. + + + Crea un método dinámico que es global para un módulo especificando el nombre del método, el tipo de valor devuelto, los tipos de parámetro, el módulo y si las comprobaciones de visibilidad Just-In-Time (JIT) se deben omitir para los tipos y miembros a los que obtiene acceso el Lenguaje intermedio de Microsoft (MSIL) del método dinámico. + Nombre del método dinámico.Puede ser una cadena de longitud cero, pero no el valor null. + Objeto que especifica el tipo de valor devuelto del método dinámico, o null si el método no tiene ningún tipo de valor devuelto. + Matriz de objetos que especifica los tipos de los parámetros del método dinámico, o null si el método no tiene parámetros. + + que representa el módulo al que se va a asociar lógicamente el método dinámico. + true para omitir las comprobaciones de visibilidad JIT en tipos y miembros a los que obtiene acceso el Lenguaje intermedio de Microsoft (MSIL) del método dinámico. + Un elemento de es null o . O bien es un módulo que proporciona hospedaje anónimo a los métodos dinámicos. + + es null. O bien es null. + + es un tipo para el que devuelve true. + + + Crea un método dinámico, especificando el nombre del método, el tipo de valor devuelto, los tipos de parámetro y el tipo al que está asociado lógicamente el método dinámico. + Nombre del método dinámico.Puede ser una cadena de longitud cero, pero no el valor null. + Objeto que especifica el tipo de valor devuelto del método dinámico, o null si el método no tiene ningún tipo de valor devuelto. + Matriz de objetos que especifica los tipos de los parámetros del método dinámico, o null si el método no tiene parámetros. + + al que está asociado lógicamente el método dinámico.El método dinámico tiene acceso a todos los miembros del tipo. + Un elemento de es null o .O bien es una interfaz, una matriz, un tipo genérico abierto o un parámetro de tipo de un método o tipo genérico. + + es null. O bien es null. + El valor de es null o es un tipo para el que devuelve true. + + + Crea un método dinámico especificando el nombre del método, el tipo de valor devuelto, los tipos de parámetro, el tipo al que está asociado lógicamente el método dinámico y si las comprobaciones de visibilidad Just-In-Time (JIT) se deben omitir para los tipos y los miembros a los que tiene acceso el Lenguaje intermedio de Microsoft (MSIL) del método dinámico. + Nombre del método dinámico.Puede ser una cadena de longitud cero, pero no el valor null. + Objeto que especifica el tipo de valor devuelto del método dinámico, o null si el método no tiene ningún tipo de valor devuelto. + Matriz de objetos que especifica los tipos de los parámetros del método dinámico, o null si el método no tiene parámetros. + + al que está asociado lógicamente el método dinámico.El método dinámico tiene acceso a todos los miembros del tipo. + true para omitir las comprobaciones de visibilidad JIT en tipos y miembros a los que obtiene acceso el Lenguaje intermedio de Microsoft (MSIL) del método dinámico; de lo contrario, false. + Un elemento de es null o .O bien es una interfaz, una matriz, un tipo genérico abierto o un parámetro de tipo de un método o tipo genérico. + + es null. O bien es null. + El valor de es null o es un tipo para el que devuelve true. + + + Obtiene los atributos especificados cuando se creó el método dinámico. + Una combinación bit a bit de los valores de que representan los atributos del método. + + + Obtiene la convención de llamada especificada cuando se creó el método dinámico. + Uno de los valores de que indica la convención de llamada del método. + + + Completa el método dinámico y crea un delegado que se puede utilizar para ejecutarlo. + Un delegado del tipo especificado que se puede utilizar para ejecutar el método dinámico. + Tipo de delegado cuya firma coincide con la del método dinámico. + El método dinámico no tiene cuerpo de método. + + tiene el número de parámetros o los tipos de parámetro incorrectos. + + + Completa el método dinámico y crea un delegado que se puede utilizar para ejecutarlo, especificando el tipo de delegado y un objeto al que se enlaza el delegado. + Un delegado del tipo especificado que se puede utilizar para ejecutar el método dinámico con el objeto de destino especificado. + Tipo de delegado cuya firma coincide con el método dinámico, menos el primer parámetro. + Objeto al que se enlaza el delegado.Debe ser del mismo tipo que el primer parámetro del método dinámico. + El método dinámico no tiene cuerpo de método. + + no es del mismo tipo que el primer parámetro del método dinámico y no se puede asignar a ese tipo.O bien tiene el número de parámetros o los tipos de parámetro incorrectos. + + + Obtiene el tipo que declara el método, que siempre es null para los métodos dinámicos. + Siempre es null. + + + Devuelve un generador de Lenguaje intermedio de Microsoft (MILS) para el método con un tamaño predeterminado de secuencia de MSIL de 64 bytes. + Un objeto para el método. + + + Devuelve un generador de Lenguaje intermedio de Microsoft (MSIL) para el método con el tamaño de secuencia de MSIL especificado. + Un objeto para el método, con el tamaño de secuencia de MSIL especificado. + Tamaño de la secuencia de MSIL, en bytes. + + + Devuelve los parámetros del método dinámico. + Una matriz de objetos que representan los parámetros del método dinámico. + + + Obtiene o establece un valor que indica si las variables locales del método se inicializan en cero. + true si las variables locales del método se inicializan en cero; de lo contrario, false.El valor predeterminado es true. + + + + Obtiene el nombre del método dinámico. + El nombre simple del método. + + + Obtiene el parámetro devuelto del método dinámico. + Siempre es null. + + + Obtiene el tipo de valor devuelto para el método dinámico. + + que representa el tipo del valor devuelto del método actual; si el método no tiene ningún tipo de valor devuelto. + + + Devuelve la firma del método, representada como una cadena. + Una cadena que representa la firma del método. + + + \ No newline at end of file diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml new file mode 100755 index 0000000..0787ab1 --- /dev/null +++ b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml @@ -0,0 +1,184 @@ + + + + System.Reflection.Emit.Lightweight + + + + Définit et représente une méthode dynamique qui peut être compilée, exécutée et ignorée.Les méthodes ignorées sont disponibles pour le garbage collection. + + + Crée une méthode dynamique qui est globale pour un module, en spécifiant le nom de la méthode, les attributs, les conventions d'appel, le type de retour, les types de paramètres, le module et si les contrôles de visibilité juste-à-temps (JIT) doivent être ignorés pour les types et membres auxquels accède le langage Microsoft Intermediate Language (MSIL) de la méthode dynamique. + Nom de la méthode dynamique.Ce peut être une chaîne de longueur nulle, mais pas la valeur null. + Combinaison d'opérations de bits de valeurs qui spécifient les attributs de la méthode dynamique.La seule combinaison autorisée est et . + Convention d'appel de la méthode dynamique.Doit être . + Objet qui spécifie le type de retour de la méthode dynamique, ou null si la méthode n'a aucun type de retour. + Tableau d'objets spécifiant les types des paramètres de la méthode dynamique, ou indiquant null si la méthode n'a pas de paramètre. + + représentant le module auquel la méthode dynamique doit être associée de manière logique. + true pour ignorer les contrôles de visibilité JIT sur les types et membres auxquels accède le code MSIL de la méthode dynamique ; sinon, false. + Un élément de est null ou .ou est un module qui fournit l'hébergement anonyme pour les méthodes dynamiques. + + a la valeur null. ou a la valeur null. + + est une combinaison d'indicateurs autre que et .ou n'est pas .ou est un type pour lequel retourne true. + + + Crée une méthode dynamique, en spécifiant le nom de la méthode, les attributs, la convention d'appel, le type de retour, les types de paramètres, le type auquel la méthode dynamique est associée de manière logique, et si les contrôles de visibilité juste-à-temps (JIT) doivent être ignorés pour les types et membres auxquels accède le langage MSIL de la méthode dynamique. + Nom de la méthode dynamique.Ce peut être une chaîne de longueur nulle, mais pas la valeur null. + Combinaison d'opérations de bits de valeurs qui spécifient les attributs de la méthode dynamique.La seule combinaison autorisée est et . + Convention d'appel de la méthode dynamique.Doit être . + Objet qui spécifie le type de retour de la méthode dynamique, ou null si la méthode n'a aucun type de retour. + Tableau d'objets spécifiant les types des paramètres de la méthode dynamique, ou indiquant null si la méthode n'a pas de paramètre. + + auquel la méthode dynamique est associée de manière logique.La méthode dynamique a accès à tous les membres du type. + true pour ignorer les contrôles de visibilité JIT sur les types et membres auxquels accède le code MSIL de la méthode dynamique ; sinon, false. + Un élément de est null ou . ou est une interface, un tableau, un type générique ouvert ou un paramètre de type d'un type ou d'une méthode générique. + + a la valeur null. ou a la valeur null. + + est une combinaison d'indicateurs autre que et .ou n'est pas .ou est un type pour lequel retourne true. + + + Initialise une méthode dynamique hébergée de manière anonyme, en spécifiant le nom de la méthode, le type de retour et les types de paramètre. + Nom de la méthode dynamique.Ce peut être une chaîne de longueur nulle, mais pas la valeur null. + Objet qui spécifie le type de retour de la méthode dynamique, ou null si la méthode n'a aucun type de retour. + Tableau d'objets spécifiant les types des paramètres de la méthode dynamique, ou indiquant null si la méthode n'a pas de paramètre. + Un élément de est null ou . + + a la valeur null. + + est un type pour lequel retourne true. + + + Initialise une méthode dynamique hébergée de manière anonyme, en spécifiant le nom de la méthode, le type de retour, les types de paramètre, et si les contrôles de visibilité juste-à-temps (JIT) doivent être ignorés pour les types et membres auxquels accède le langage MSIL de la méthode dynamique. + Nom de la méthode dynamique.Ce peut être une chaîne de longueur nulle, mais pas la valeur null. + Objet qui spécifie le type de retour de la méthode dynamique, ou null si la méthode n'a aucun type de retour. + Tableau d'objets spécifiant les types des paramètres de la méthode dynamique, ou indiquant null si la méthode n'a pas de paramètre. + true pour ignorer les contrôles de visibilité JIT sur les types et membres auxquels accède le langage MSIL de la méthode dynamique, avec cette restriction : le niveau de confiance des assemblys qui contiennent ces types et membres doit être inférieur ou égal à celui de la pile des appels qui émet la méthode dynamique ; sinon, false. + Un élément de est null ou . + + a la valeur null. + + est un type pour lequel retourne true. + + + Crée une méthode dynamique qui est globale pour un module, en spécifiant le nom de la méthode, le type de retour, les types de paramètres et le module. + Nom de la méthode dynamique.Ce peut être une chaîne de longueur nulle, mais pas la valeur null. + Objet qui spécifie le type de retour de la méthode dynamique, ou null si la méthode n'a aucun type de retour. + Tableau d'objets spécifiant les types des paramètres de la méthode dynamique, ou indiquant null si la méthode n'a pas de paramètre. + + représentant le module auquel la méthode dynamique doit être associée de manière logique. + Un élément de est null ou . ou est un module qui fournit l'hébergement anonyme pour les méthodes dynamiques. + + a la valeur null. ou a la valeur null. + + est un type pour lequel retourne true. + + + Crée une méthode dynamique qui est globale pour un module, en spécifiant le nom de la méthode, le type de retour, les types de paramètres, le module et si les contrôles de visibilité juste-à-temps (JIT) doivent être ignorés pour les types et membres auxquels accède le langage Microsoft Intermediate Language (MSIL) de la méthode dynamique. + Nom de la méthode dynamique.Ce peut être une chaîne de longueur nulle, mais pas la valeur null. + Objet qui spécifie le type de retour de la méthode dynamique, ou null si la méthode n'a aucun type de retour. + Tableau d'objets spécifiant les types des paramètres de la méthode dynamique, ou indiquant null si la méthode n'a pas de paramètre. + + représentant le module auquel la méthode dynamique doit être associée de manière logique. + true pour ignorer les contrôles de visibilité JIT sur les types et membres auxquels accède le code MSIL de la méthode dynamique. + Un élément de est null ou . ou est un module qui fournit l'hébergement anonyme pour les méthodes dynamiques. + + a la valeur null. ou a la valeur null. + + est un type pour lequel retourne true. + + + Crée une méthode dynamique, en spécifiant le nom de la méthode, le type de retour, les types de paramètres et le type auquel la méthode dynamique est associée de manière logique. + Nom de la méthode dynamique.Ce peut être une chaîne de longueur nulle, mais pas la valeur null. + Objet qui spécifie le type de retour de la méthode dynamique, ou null si la méthode n'a aucun type de retour. + Tableau d'objets spécifiant les types des paramètres de la méthode dynamique, ou indiquant null si la méthode n'a pas de paramètre. + + auquel la méthode dynamique est associée de manière logique.La méthode dynamique a accès à tous les membres du type. + Un élément de est null ou .ou est une interface, un tableau, un type générique ouvert ou un paramètre de type d'un type ou d'une méthode générique. + + a la valeur null. ou a la valeur null. + + est null ou est un type pour lequel retourne true. + + + Crée une méthode dynamique, en spécifiant le nom de la méthode, le type de retour, les types de paramètres, le type auquel la méthode dynamique est associée de manière logique, et si les contrôles de visibilité juste-à-temps (JIT) doivent être ignorés pour les types et membres auxquels accède le code MSIL de la méthode dynamique. + Nom de la méthode dynamique.Ce peut être une chaîne de longueur nulle, mais pas la valeur null. + Objet qui spécifie le type de retour de la méthode dynamique, ou null si la méthode n'a aucun type de retour. + Tableau d'objets spécifiant les types des paramètres de la méthode dynamique, ou indiquant null si la méthode n'a pas de paramètre. + + auquel la méthode dynamique est associée de manière logique.La méthode dynamique a accès à tous les membres du type. + true pour ignorer les contrôles de visibilité JIT sur les types et membres auxquels accède le code MSIL de la méthode dynamique ; sinon, false. + Un élément de est null ou .ou est une interface, un tableau, un type générique ouvert ou un paramètre de type d'un type ou d'une méthode générique. + + a la valeur null. ou a la valeur null. + + est null ou est un type pour lequel retourne true. + + + Obtient les attributs spécifiés au moment de la création de la méthode dynamique. + Combinaison d'opérations de bits des valeurs qui représentent les attributs de la méthode. + + + Obtient la convention d'appel spécifiée au moment de la création de la méthode dynamique. + L'une des valeurs indiquant la convention d'appel de la méthode. + + + Exécute la méthode dynamique et crée un délégué qui peut être utilisé pour l'exécuter. + Délégué du type spécifié qui peut être utilisé pour exécuter la méthode dynamique. + Type délégué dont la signature correspond à celle de la méthode dynamique. + La méthode dynamique ne possède aucun corps de méthode. + + possède un nombre de paramètres erroné ou des types de paramètres incorrects. + + + Exécute la méthode dynamique et crée un délégué qui peut être utilisé pour l'exécuter, en spécifiant le type délégué et un objet auquel le délégué est lié. + Délégué du type spécifié qui peut être utilisé pour exécuter la méthode dynamique avec l'objet cible spécifié. + Type délégué dont la signature correspond à celle de la méthode dynamique, moins le premier paramètre. + Objet auquel le délégué est lié.Doit être du même type que le premier paramètre de la méthode dynamique. + La méthode dynamique ne possède aucun corps de méthode. + + n'est pas du même type que le premier paramètre de la méthode dynamique et ne peut pas être assigné à ce type.ou possède un nombre de paramètres erroné ou des types de paramètres incorrects. + + + Obtient le type qui déclare la méthode (toujours null pour les méthodes dynamiques). + Toujours null. + + + Retourne un générateur MSIL (Microsoft Intermediate Language) pour la méthode, avec une taille de flux MSIL par défaut de 64 octets. + Objet de la méthode. + + + Retourne un générateur MSIL (Microsoft Intermediate Language) pour la méthode, avec la taille de flux MSIL spécifiée. + Objet pour la méthode avec la taille de flux MSIL spécifiée. + Taille du flux MSIL en octets. + + + Retourne les paramètres de la méthode dynamique. + Tableau d'objets représentant les paramètres de la méthode dynamique. + + + Obtient ou définit une valeur qui indique si les variables locales contenues dans la méthode sont initialisées à zéro. + true si les variables locales contenues dans la méthode sont initialisées à zéro ; sinon, false.La valeur par défaut est true. + + + + Obtient le nom de la méthode dynamique. + Nom simple de la méthode. + + + Obtient le paramètre de retour de la méthode dynamique. + Toujours null. + + + Obtient le type de la valeur de retour pour la méthode dynamique. + + qui représente le type de la valeur de retour de la méthode actuelle ; si la méthode ne possède aucun type de retour. + + + Retourne la signature de la méthode, représentée sous la forme d'une chaîne. + Chaîne représentant la signature de la méthode. + + + \ No newline at end of file diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml new file mode 100755 index 0000000..116bd0d --- /dev/null +++ b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml @@ -0,0 +1,177 @@ + + + + System.Reflection.Emit.Lightweight + + + + Definisce e rappresenta un metodo dinamico che può essere compilato, eseguito ed eliminato.I metodi scartati sono disponibili per la procedura di Garbage Collection. + + + Crea un metodo dinamico globale per un modulo, specificando il nome del metodo, gli attributi, la convenzione di chiamata, il tipo restituito, i tipi di parametri e il modulo e indicando se deve essere ignorato il controllo di visibilità JIT per i tipi e i membri a cui accede il linguaggio MSIL (Microsoft Intermediate Language) del metodo dinamico. + Nome del metodo dinamico.Può essere una stringa di lunghezza zero, ma non può essere null. + Combinazione bit per bit di valori che specifica gli attributi del metodo dinamico.L'unica combinazione consentita è quella composta da e . + Convenzione di chiamata per il metodo dinamico.Deve essere . + Classe che specifica il tipo restituito del metodo dinamico oppure null se il metodo non dispone di tipi restituiti. + Matrice di oggetti che specificano i tipi dei parametri del metodo dinamico oppure null se il metodo non dispone di parametri. + Classe che rappresenta il modulo a cui il metodo dinamico deve essere associato dal punto di vista logico. + true per ignorare i controlli di visibilità JIT su tipi e membri a cui accede il linguaggio MSIL del metodo dinamico; in caso contrario, false. + Un elemento di è null o .- oppure - è un modulo che fornisce hosting anonimo per i metodi dinamici. + + è null. - oppure - è null. + + è una combinazione di flag diversa da e .- oppure - non è .- oppure - è un tipo per cui restituisce true. + + + Crea un metodo dinamico, specificando il nome del metodo, gli attributi, la convenzione di chiamata, il tipo restituito, i tipi di parametri, il tipo a cui il metodo dinamico è associato dal punto di vista logico e indicando se è necessario ignorare il controllo di visibilità JIT per i tipi e i membri a cui accede il linguaggio MSIL (Microsoft Intermediate Language) del metodo dinamico. + Nome del metodo dinamico.Può essere una stringa di lunghezza zero, ma non può essere null. + Combinazione bit per bit di valori che specifica gli attributi del metodo dinamico.L'unica combinazione consentita è quella composta da e . + Convenzione di chiamata per il metodo dinamico.Deve essere . + Classe che specifica il tipo restituito del metodo dinamico oppure null se il metodo non dispone di tipi restituiti. + Matrice di oggetti che specificano i tipi dei parametri del metodo dinamico oppure null se il metodo non dispone di parametri. + Classe a cui il metodo dinamico è associato dal punto di vista logico.Il metodo dinamico ha accesso a tutti i membri del tipo. + true per ignorare i controlli di visibilità JIT su tipi e membri a cui accede il linguaggio MSIL del metodo dinamico; in caso contrario, false. + Un elemento di è null o . - oppure - è un'interfaccia, una matrice, un tipo generico aperto o un parametro di tipo di un tipo o di un metodo generico. + + è null. - oppure - è null. + + è una combinazione di flag diversa da e .- oppure - non è .- oppure - è un tipo per cui restituisce true. + + + Inizializza un metodo dinamico contenuto anonimamente, specificando il nome del metodo, il tipo restituito e tipi di parametro. + Nome del metodo dinamico.Può essere una stringa di lunghezza zero, ma non può essere null. + Classe che specifica il tipo restituito del metodo dinamico oppure null se il metodo non dispone di tipi restituiti. + Matrice di oggetti che specificano i tipi dei parametri del metodo dinamico oppure null se il metodo non dispone di parametri. + Un elemento di è null o . + + è null. + + è un tipo per cui restituisce true. + + + Inizializza un metodo dinamico contenuto anonimamente, specificando il nome del metodo, il tipo restituito, i tipi di parametri e il modulo e indicando se deve essere ignorato il controllo di visibilità JIT per i tipi e i membri del metodo dinamico a cui accede MSIL (Microsoft Intermediate Language). + Nome del metodo dinamico.Può essere una stringa di lunghezza zero, ma non può essere null. + Classe che specifica il tipo restituito del metodo dinamico oppure null se il metodo non dispone di tipi restituiti. + Matrice di oggetti che specificano i tipi dei parametri del metodo dinamico oppure null se il metodo non dispone di parametri. + true per ignorare i controlli di visibilità JIT su tipi e membri a cui accede il linguaggio MSIL del metodo dinamico, con la seguente restrizione: il livello di attendibilità degli assembly che contengono tali tipi e membri deve essere uguale a inferiore al livello di attendibilità dello stack di chiamate che genera il metodo dinamico; in caso contrario, false. + Un elemento di è null o . + + è null. + + è un tipo per cui restituisce true. + + + Crea un metodo dinamico globale per un modulo, specificando il nome del metodo, il tipo restituito, i tipi di parametri e il modulo. + Nome del metodo dinamico.Può essere una stringa di lunghezza zero, ma non può essere null. + Classe che specifica il tipo restituito del metodo dinamico oppure null se il metodo non dispone di tipi restituiti. + Matrice di oggetti che specificano i tipi dei parametri del metodo dinamico oppure null se il metodo non dispone di parametri. + Classe che rappresenta il modulo a cui il metodo dinamico deve essere associato dal punto di vista logico. + Un elemento di è null o . - oppure - è un modulo che fornisce hosting anonimo per i metodi dinamici. + + è null. - oppure - è null. + + è un tipo per cui restituisce true. + + + Crea un metodo dinamico globale per un modulo, specificando il nome del metodo, il tipo restituito, i tipi di parametri e il modulo e indicando se deve essere ignorato il controllo di visibilità JIT per i tipi e i membri del metodo dinamico a cui accede MSIL (Microsoft Intermediate Language). + Nome del metodo dinamico.Può essere una stringa di lunghezza zero, ma non può essere null. + Classe che specifica il tipo restituito del metodo dinamico oppure null se il metodo non dispone di tipi restituiti. + Matrice di oggetti che specificano i tipi dei parametri del metodo dinamico oppure null se il metodo non dispone di parametri. + Classe che rappresenta il modulo a cui il metodo dinamico deve essere associato dal punto di vista logico. + true per ignorare i controlli di visibilità JIT su tipi e membri a cui accede il linguaggio MSIL del metodo dinamico. + Un elemento di è null o . - oppure - è un modulo che fornisce hosting anonimo per i metodi dinamici. + + è null. - oppure - è null. + + è un tipo per cui restituisce true. + + + Crea un metodo dinamico, specificando il nome del metodo, il tipo restituito, i parametri di tipo e il tipo a cui il metodo dinamico è associato dal punto di vista logico. + Nome del metodo dinamico.Può essere una stringa di lunghezza zero, ma non può essere null. + Classe che specifica il tipo restituito del metodo dinamico oppure null se il metodo non dispone di tipi restituiti. + Matrice di oggetti che specificano i tipi dei parametri del metodo dinamico oppure null se il metodo non dispone di parametri. + Classe a cui il metodo dinamico è associato dal punto di vista logico.Il metodo dinamico ha accesso a tutti i membri del tipo. + Un elemento di è null o .- oppure - è un'interfaccia, una matrice, un tipo generico aperto o un parametro di tipo di un tipo o di un metodo generico. + + è null. - oppure - è null. + + è null o è un tipo per il quale la proprietà restituisce true. + + + Crea un metodo dinamico, specificando il nome del metodo, il tipo restituito, i tipi di parametri, il tipo a cui il metodo dinamico è associato dal punto di vista logico e indicando se è necessario ignorare il controllo di visibilità JIT per i tipi e i membri a cui accede il linguaggio MSIL (Microsoft Intermediate Language) del metodo dinamico. + Nome del metodo dinamico.Può essere una stringa di lunghezza zero, ma non può essere null. + Classe che specifica il tipo restituito del metodo dinamico oppure null se il metodo non dispone di tipi restituiti. + Matrice di oggetti che specificano i tipi dei parametri del metodo dinamico oppure null se il metodo non dispone di parametri. + Classe a cui il metodo dinamico è associato dal punto di vista logico.Il metodo dinamico ha accesso a tutti i membri del tipo. + true per ignorare i controlli di visibilità JIT su tipi e membri a cui accede il linguaggio MSIL del metodo dinamico; in caso contrario, false. + Un elemento di è null o .- oppure - è un'interfaccia, una matrice, un tipo generico aperto o un parametro di tipo di un tipo o di un metodo generico. + + è null. - oppure - è null. + + è null o è un tipo per il quale la proprietà restituisce true. + + + Ottiene gli attributi specificati quando il metodo dinamico è stato creato. + Combinazione bit per bit dei valori che rappresentano gli attributi relativi al metodo. + + + Ottiene la convenzione di chiamata specificata quando il metodo dinamico è stato creato. + Uno dei valori che indica la convenzione di chiamata del metodo. + + + Completa il metodo dinamico e crea un delegato che può essere utilizzato per eseguirlo. + Delegato del tipo specificato, che è possibile utilizzare per eseguire il metodo dinamico. + Tipo delegato la cui firma corrisponde a quella del metodo dinamico. + Il metodo dinamico non dispone di corpo. + + ha un numero errato di parametri o tipi di parametro non validi. + + + Completa il metodo dinamico e crea un delegato che può essere utilizzato per eseguirlo, specificando il tipo di delegato e l'oggetto a cui il delegato è associato. + Delegato del tipo specificato, che è possibile utilizzare per eseguire il metodo dinamico con l'oggetto di destinazione specificato. + Tipo delegato la cui firma corrisponde a quella del metodo dinamico, meno il primo parametro. + Oggetto a cui il delegato è associato.Deve essere dello stesso tipo del primo parametro del metodo dinamico. + Il metodo dinamico non dispone di corpo. + + non è dello stesso tipo del primo parametro del metodo dinamico e non è assegnabile al tipo.- oppure - ha un numero errato di parametri o tipi di parametro non validi. + + + Ottiene il tipo che dichiara il metodo, che è sempre null per i metodi dinamici. + Sempre null. + + + Restituisce un generatore in linguaggio MSIL (Microsoft Intermediate Language) per il metodo con una dimensione di flusso MSIL predefinita di 64 byte. + Classe relativa al metodo. + + + Restituisce un generatore MSIL (Microsoft Intermediate Language) per il metodo con la dimensione di flusso MSIL specificata. + Classe per il metodo, con la dimensione di flusso MSIL specificata. + Dimensione del flusso MSIL in byte. + + + Restituisce i parametri del metodo dinamico. + Matrice di oggetti che rappresentano i parametri del metodo dinamico. + + + Ottiene o imposta un valore che indica se le variabili locali all'interno del metodo sono inizializzate su zero. + true se le variabili locali all'interno del metodo sono inizializzate su zero. In caso contrario, false.Il valore predefinito è true. + + + + Ottiene il nome del metodo dinamico. + Il nome semplice del metodo. + + + Ottiene il parametro restituito del metodo dinamico. + Sempre null. + + + Ottiene il tipo del valore restituito per il metodo dinamico. + Classe che rappresenta il tipo del valore restituito del metodo corrente; se il metodo non dispone di tipi restituiti. + + + Restituisce la firma del metodo, rappresentata sotto forma di stringa. + Una stringa che rappresenta la firma del metodo. + + + \ No newline at end of file diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml new file mode 100755 index 0000000..017e387 --- /dev/null +++ b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml @@ -0,0 +1,185 @@ + + + + System.Reflection.Emit.Lightweight + + + + コンパイル、実行、および破棄できる動的メソッドを定義し、表します。破棄されたメソッドは、ガベージ コレクションの対象となります。 + + + メソッド名、属性、呼び出し規約、戻り値の型、パラメーターの型、モジュールを指定し、さらに動的メソッドの MSIL (Microsoft Intermediate Language) によってアクセスされる型およびメンバーに対して JIT (Just-In-Time) の参照範囲チェックをスキップする必要があるかどうかを指定して、モジュールに対してグローバルな動的メソッドを作成します。 + 動的メソッドの名前。これは、長さ 0 の文字列にすることはできますが、null にすることはできません。 + 動的メソッドの属性を指定する 値のビットごとの組み合わせ。許可される組み合わせは、 の組み合わせだけです。 + 動的メソッドの呼び出し規約。 にする必要があります。 + 動的メソッドの戻り値の型を指定する オブジェクト。メソッドに戻り値の型がない場合は null。 + 動的メソッドのパラメーターの型を指定する オブジェクトの配列。メソッドにパラメーターがない場合は null。 + 動的メソッドを論理的に関連付けるモジュールを表す 。 + 動的メソッドの MSIL によってアクセスされる型およびメンバーに対して JIT の参照範囲チェックをスキップする場合は true。それ以外の場合は false。 + + の要素が null または です。または が、動的メソッドを匿名でホストするモジュールです。 + + は null なので、または は null なので、 + + 以外のフラグの組み合わせです。または ではありません。または で true が返される型です。 + + + メソッド名、属性、呼び出し規約、戻り値の型、パラメーターの型、動的メソッドを論理的に関連付ける型を指定し、さらに動的メソッドの MSIL (Microsoft Intermediate Language) によってアクセスされる型およびメンバーに対して JIT (Just-In-Time) の参照範囲チェックをスキップする必要があるかどうかを指定して、動的メソッドを作成します。 + 動的メソッドの名前。これは、長さ 0 の文字列にすることはできますが、null にすることはできません。 + 動的メソッドの属性を指定する 値のビットごとの組み合わせ。許可される組み合わせは、 の組み合わせだけです。 + 動的メソッドの呼び出し規約。 にする必要があります。 + 動的メソッドの戻り値の型を指定する オブジェクト。メソッドに戻り値の型がない場合は null。 + 動的メソッドのパラメーターの型を指定する オブジェクトの配列。メソッドにパラメーターがない場合は null。 + 動的メソッドを論理的に関連付ける 。動的メソッドはこの型のすべてのメンバーにアクセスできます。 + 動的メソッドの MSIL によってアクセスされる型およびメンバーに対して JIT の参照範囲チェックをスキップする場合は true。それ以外の場合は false。 + + の要素が null または です。または がインターフェイス、配列、オープン ジェネリック型、ジェネリック型またはジェネリック メソッドの型パラメーターです。 + + は null なので、または は null なので、 + + 以外のフラグの組み合わせです。または ではありません。または で true が返される型です。 + + + メソッド名、戻り値の型、およびパラメーターの型を指定して、匿名でホストされる動的メソッドを初期化します。 + 動的メソッドの名前。これは、長さ 0 の文字列にすることはできますが、null にすることはできません。 + 動的メソッドの戻り値の型を指定する オブジェクト。メソッドに戻り値の型がない場合は null。 + 動的メソッドのパラメーターの型を指定する オブジェクトの配列。メソッドにパラメーターがない場合は null。 + + の要素が null または です。 + + は null なので、 + + で true が返される型です。 + + + メソッド名、戻り値の型、パラメーターの型、モジュールを指定し、さらに動的メソッドの MSIL (Microsoft Intermediate Language) によってアクセスされる型およびメンバーに対して JIT (Just-In-Time) の参照範囲チェックをスキップする必要があるかどうかを指定して、匿名でホストされる動的メソッドを初期化します。 + 動的メソッドの名前。これは、長さ 0 の文字列にすることはできますが、null にすることはできません。 + 動的メソッドの戻り値の型を指定する オブジェクト。メソッドに戻り値の型がない場合は null。 + 動的メソッドのパラメーターの型を指定する オブジェクトの配列。メソッドにパラメーターがない場合は null。 + 動的メソッドの MSIL によってアクセスされる型およびメンバーに対して、このような型およびメンバーを含むアセンブリの信頼レベルが、動的メソッドを出力するコール スタックの信頼レベル以下である必要があるという制限付きで、JIT の参照範囲チェックをスキップする場合は true。それ以外の場合は false。 + + の要素が null または です。 + + は null なので、 + + で true が返される型です。 + + + メソッド名、戻り値の型、パラメーターの型、およびモジュールを指定して、モジュールに対してグローバルな動的メソッドを作成します。 + 動的メソッドの名前。これは、長さ 0 の文字列にすることはできますが、null にすることはできません。 + 動的メソッドの戻り値の型を指定する オブジェクト。メソッドに戻り値の型がない場合は null。 + 動的メソッドのパラメーターの型を指定する オブジェクトの配列。メソッドにパラメーターがない場合は null。 + 動的メソッドを論理的に関連付けるモジュールを表す 。 + + の要素が null または です。または が、動的メソッドを匿名でホストするモジュールです。 + + は null なので、または は null なので、 + + で true が返される型です。 + + + メソッド名、戻り値の型、パラメーターの型、モジュールを指定し、さらに動的メソッドの MSIL (Microsoft Intermediate Language) によってアクセスされる型およびメンバーに対して JIT (Just-In-Time) の参照範囲チェックをスキップする必要があるかどうかを指定して、モジュールに対してグローバルな動的メソッドを作成します。 + 動的メソッドの名前。これは、長さ 0 の文字列にすることはできますが、null にすることはできません。 + 動的メソッドの戻り値の型を指定する オブジェクト。メソッドに戻り値の型がない場合は null。 + 動的メソッドのパラメーターの型を指定する オブジェクトの配列。メソッドにパラメーターがない場合は null。 + 動的メソッドを論理的に関連付けるモジュールを表す 。 + 動的メソッドの MSIL によってアクセスされる型およびメンバーに対して JIT の参照範囲チェックをスキップする場合は true。 + + の要素が null または です。または が、動的メソッドを匿名でホストするモジュールです。 + + は null なので、または は null なので、 + + で true が返される型です。 + + + メソッド名、戻り値の型、パラメーターの型、および動的メソッドを論理的に関連付ける型を指定して、動的メソッドを作成します。 + 動的メソッドの名前。これは、長さ 0 の文字列にすることはできますが、null にすることはできません。 + 動的メソッドの戻り値の型を指定する オブジェクト。メソッドに戻り値の型がない場合は null。 + 動的メソッドのパラメーターの型を指定する オブジェクトの配列。メソッドにパラメーターがない場合は null。 + 動的メソッドを論理的に関連付ける 。動的メソッドはこの型のすべてのメンバーにアクセスできます。 + + の要素が null または です。または がインターフェイス、配列、オープン ジェネリック型、ジェネリック型またはジェネリック メソッドの型パラメーターです。 + + は null なので、または は null なので、 + + が null であるか、 で true が返される型です。 + + + メソッド名、戻り値の型、パラメーターの型、動的メソッドを論理的に関連付ける型を指定し、さらに動的メソッドの MSIL (Microsoft Intermediate Language) によってアクセスされる型およびメンバーに対して JIT (Just-In-Time) の参照範囲チェックをスキップする必要があるかどうかを指定して、動的メソッドを作成します。 + 動的メソッドの名前。これは、長さ 0 の文字列にすることはできますが、null にすることはできません。 + 動的メソッドの戻り値の型を指定する オブジェクト。メソッドに戻り値の型がない場合は null。 + 動的メソッドのパラメーターの型を指定する オブジェクトの配列。メソッドにパラメーターがない場合は null。 + 動的メソッドを論理的に関連付ける 。動的メソッドはこの型のすべてのメンバーにアクセスできます。 + 動的メソッドの MSIL によってアクセスされる型およびメンバーに対して JIT の参照範囲チェックをスキップする場合は true。それ以外の場合は false。 + + の要素が null または です。または がインターフェイス、配列、オープン ジェネリック型、ジェネリック型またはジェネリック メソッドの型パラメーターです。 + + は null なので、または は null なので、 + + が null であるか、 で true が返される型です。 + + + 動的メソッドの作成時に指定した属性を取得します。 + メソッドの属性を表す 値のビットごとの組み合わせ。 + + + 動的メソッドの作成時に指定した呼び出し規約を取得します。 + メソッドの呼び出し規約を示す 値のいずれか。 + + + 動的メソッドを完了し、メソッドの実行に使用できるデリゲートを作成します。 + 動的メソッドの実行に使用できる指定した型のデリゲート。 + シグネチャが動的メソッドのシグネチャと一致するデリゲート型。 + 動的メソッドにメソッド本体がありません。 + + のパラメーターの数に誤りがあるか、パラメーターの型に誤りがあります。 + + + デリゲート型とデリゲートのバインド先となるオブジェクトを指定して、動的メソッドを完了し、メソッドの実行に使用できるデリゲートを作成します。 + 指定した対象オブジェクトで動的メソッドの実行に使用できる、指定した型のデリゲート。 + 1 つ目のパラメーターがない、シグネチャが動的メソッドのシグネチャと一致するデリゲート型。 + デリゲートのバインド先となるオブジェクト。動的メソッドの 1 つ目のパラメーターと同じ型であることが必要です。 + 動的メソッドにメソッド本体がありません。 + + が動的メソッドの 1 つ目のパラメーターと同じ型でないため、この型に割り当てることはできません。または のパラメーターの数に誤りがあるか、パラメーターの型に誤りがあります。 + + + 動的メソッドに対して常に null である、メソッドを宣言する型を取得します。 + 常に null。 + + + 既定の MSIL (Microsoft Intermediate Language) ストリーム サイズである 64 バイトを使用して、このメソッドに対応する MSIL ジェネレーターを返します。 + メソッドの オブジェクト。 + + + 指定された MSIL (Microsoft Intermediate Language) ストリーム サイズのメソッドに MSIL ジェネレーターを返します。 + MSIL ストリームの指定したサイズを使用するメソッドの オブジェクト。 + MSIL ストリームのサイズ (バイト単位)。 + + + 動的メソッドのパラメーターを返します。 + 動的メソッドのパラメーターを表す オブジェクトの配列。 + + + メソッドのローカル変数を 0 で初期化するかどうかを示す値を取得または設定します。 + メソッドのローカル変数を 0 で初期化する場合は true。それ以外の場合は false。既定値は、true です。 + + + + 動的メソッドの名前を取得します。 + メソッドの簡易名。 + + + 動的メソッドの返されるパラメーターを取得します。 + 常に null。 + + + 動的メソッドの戻り値の型を取得します。 + 現在のメソッドの戻り値の型を表す 。メソッドに戻り値の型がない場合は + + + 文字列として表されたメソッドのシグネチャを返します。 + メソッドのシグネチャを表す文字列。 + + + \ No newline at end of file diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml new file mode 100755 index 0000000..e108fb3 --- /dev/null +++ b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml @@ -0,0 +1,185 @@ + + + + System.Reflection.Emit.Lightweight + + + + 컴파일, 실행, 삭제 가능한 동적 메서드를 정의하고 나타냅니다.삭제한 메서드는 가비지 수집 대상이 될 수 있습니다. + + + 메서드 이름, 특성, 호출 규칙, 반환 형식, 매개 변수 형식 및 모듈을 지정하고 동적 메서드의 MSIL(Microsoft Intermediate Language)을 통해 액세스하는 형식과 멤버에 대해 JIT(Just-In-Time) 가시성 검사를 생략할지 여부를 지정하여 모듈에 대해 전역인 동적 메서드를 만듭니다. + 동적 메서드의 이름입니다.이 이름은 길이가 0인 문자열이 될 수 있지만 null은 될 수 없습니다. + 동적 메서드의 특성을 지정하는 값의 비트 조합입니다. 조합만 허용됩니다. + 동적 메서드의 호출 규칙입니다.여야 합니다. + 동적 메서드의 반환 형식을 지정하는 개체이거나, 메서드에 반환 형식이 없는 경우에는 null입니다. + 동적 메서드의 매개 변수 형식을 지정하는 개체로 이루어진 배열이거나, 메서드에 매개 변수가 없는 경우에는 null입니다. + 동적 메서드가 논리적으로 연결될 모듈을 나타내는 입니다. + 동적 메서드의 MSIL에서 액세스하는 형식과 멤버에 대해 JIT 가시성 검사를 생략하려면 true이고, 그렇지 않으면 false입니다. + + 의 요소가 null이거나 인 경우또는이 동적 메서드에 대한 익명 호스팅을 제공하는 모듈인 경우 + + 가 null입니다. 또는가 null입니다. + + 이외의 플래그 조합인 경우또는가 아닌 경우또는가 true를 반환하는 형식인 경우 + + + 메서드 이름, 특성, 호출 규칙, 반환 형식, 매개 변수 형식, 동적 메서드를 논리적으로 연결할 형식을 지정하고 동적 메서드의 MSIL(Microsoft Intermediate Language)을 통해 액세스하는 형식과 멤버에 대해 JIT(Just-In-Time) 가시성 검사를 생략할지 여부를 지정하여 동적 메서드를 만듭니다. + 동적 메서드의 이름입니다.이 이름은 길이가 0인 문자열이 될 수 있지만 null은 될 수 없습니다. + 동적 메서드의 특성을 지정하는 값의 비트 조합입니다. 조합만 허용됩니다. + 동적 메서드의 호출 규칙입니다.여야 합니다. + 동적 메서드의 반환 형식을 지정하는 개체이거나, 메서드에 반환 형식이 없는 경우에는 null입니다. + 동적 메서드의 매개 변수 형식을 지정하는 개체로 이루어진 배열이거나, 메서드에 매개 변수가 없는 경우에는 null입니다. + 동적 메서드가 논리적으로 연결될 입니다.동적 메서드는 해당 형식의 모든 멤버에 액세스할 수 있습니다. + 동적 메서드의 MSIL에서 액세스하는 형식과 멤버에 대해 JIT 가시성 검사를 생략하려면 true이고, 그렇지 않으면 false입니다. + + 의 요소가 null이거나 인 경우 또는가 인터페이스, 배열, 개방형 제네릭 형식, 또는 제네릭 형식이나 메서드의 형식 매개 변수인 경우 + + 가 null입니다. 또는가 null입니다. + + 이외의 플래그 조합인 경우또는가 아닌 경우또는가 true를 반환하는 형식인 경우 + + + 메서드 이름, 반환 형식 및 매개 변수 형식을 지정하여 익명으로 호스팅된 동적 메서드를 초기화합니다. + 동적 메서드의 이름입니다.이 이름은 길이가 0인 문자열이 될 수 있지만 null은 될 수 없습니다. + 동적 메서드의 반환 형식을 지정하는 개체이거나, 메서드에 반환 형식이 없는 경우에는 null입니다. + 동적 메서드의 매개 변수 형식을 지정하는 개체로 이루어진 배열이거나, 메서드에 매개 변수가 없는 경우에는 null입니다. + + 의 요소가 null이거나 인 경우 + + 가 null입니다. + + 가 true를 반환하는 형식인 경우 + + + 메서드 이름, 반환 형식 및 매개 변수 형식을 지정하고 동적 메서드의 MSIL(Microsoft Intermediate Language)을 통해 액세스하는 형식과 멤버에 대해 JIT(Just-In-Time) 가시성 검사를 생략할지 여부를 지정하여 익명으로 호스팅된 동적 메서드를 초기화합니다. + 동적 메서드의 이름입니다.이 이름은 길이가 0인 문자열이 될 수 있지만 null은 될 수 없습니다. + 동적 메서드의 반환 형식을 지정하는 개체이거나, 메서드에 반환 형식이 없는 경우에는 null입니다. + 동적 메서드의 매개 변수 형식을 지정하는 개체로 이루어진 배열이거나, 메서드에 매개 변수가 없는 경우에는 null입니다. + 동적 메서드의 MSIL에서 액세스하는 형식과 멤버를 포함하는 어셈블리의 신뢰 수준이 동적 메서드를 내보내는 호출 스택의 신뢰 수준과 같거나 그보다 낮은 경우에 한해 해당 형식과 멤버에 대한 JIT 가시성 검사를 생략하려면 true이고, 그렇지 않으면 false입니다. + + 의 요소가 null이거나 인 경우 + + 가 null입니다. + + 가 true를 반환하는 형식인 경우 + + + 메서드 이름, 반환 값, 매개 변수 형식 및 모듈을 지정하여 모듈에 대해 전역 메서드인 동적 메서드를 만듭니다. + 동적 메서드의 이름입니다.이 이름은 길이가 0인 문자열이 될 수 있지만 null은 될 수 없습니다. + 동적 메서드의 반환 형식을 지정하는 개체이거나, 메서드에 반환 형식이 없는 경우에는 null입니다. + 동적 메서드의 매개 변수 형식을 지정하는 개체로 이루어진 배열이거나, 메서드에 매개 변수가 없는 경우에는 null입니다. + 동적 메서드가 논리적으로 연결될 모듈을 나타내는 입니다. + + 의 요소가 null이거나 인 경우 또는이 동적 메서드에 대한 익명 호스팅을 제공하는 모듈인 경우 + + 가 null입니다. 또는가 null입니다. + + 가 true를 반환하는 형식인 경우 + + + 메서드 이름, 반환 형식, 매개 변수 형식 및 모듈을 지정하고 동적 메서드의 MSIL(Microsoft Intermediate Language)을 통해 액세스하는 형식과 멤버에 대해 JIT(Just-In-Time) 가시성 검사를 생략할지 여부를 지정하여 모듈에 대해 전역인 동적 메서드를 만듭니다. + 동적 메서드의 이름입니다.이 이름은 길이가 0인 문자열이 될 수 있지만 null은 될 수 없습니다. + 동적 메서드의 반환 형식을 지정하는 개체이거나, 메서드에 반환 형식이 없는 경우에는 null입니다. + 동적 메서드의 매개 변수 형식을 지정하는 개체로 이루어진 배열이거나, 메서드에 매개 변수가 없는 경우에는 null입니다. + 동적 메서드가 논리적으로 연결될 모듈을 나타내는 입니다. + 동적 메서드의 MSIL에서 액세스하는 형식과 멤버에 대해 JIT 가시성 검사를 생략하려면 true입니다. + + 의 요소가 null이거나 인 경우 또는이 동적 메서드에 대한 익명 호스팅을 제공하는 모듈인 경우 + + 가 null입니다. 또는가 null입니다. + + 가 true를 반환하는 형식인 경우 + + + 메서드 이름, 반환 형식, 매개 변수 형식 및 동적 메서드가 논리적으로 연결될 형식을 지정하여 동적 메서드를 만듭니다. + 동적 메서드의 이름입니다.이 이름은 길이가 0인 문자열이 될 수 있지만 null은 될 수 없습니다. + 동적 메서드의 반환 형식을 지정하는 개체이거나, 메서드에 반환 형식이 없는 경우에는 null입니다. + 동적 메서드의 매개 변수 형식을 지정하는 개체로 이루어진 배열이거나, 메서드에 매개 변수가 없는 경우에는 null입니다. + 동적 메서드가 논리적으로 연결될 입니다.동적 메서드는 해당 형식의 모든 멤버에 액세스할 수 있습니다. + + 의 요소가 null이거나 인 경우또는 가 인터페이스, 배열, 개방형 제네릭 형식, 또는 제네릭 형식이나 메서드의 형식 매개 변수인 경우 + + 가 null입니다. 또는가 null입니다. + + 이 null이거나, 가 true를 반환하는 형식인 경우 + + + 메서드 이름, 반환 형식, 매개 변수 형식, 동적 메서드를 논리적으로 연결할 형식을 지정하고 동적 메서드의 MSIL(Microsoft Intermediate Language)을 통해 액세스하는 형식과 멤버에 대해 JIT(Just-In-Time) 가시성 검사를 생략할지 여부를 지정하여 동적 메서드를 만듭니다. + 동적 메서드의 이름입니다.이 이름은 길이가 0인 문자열이 될 수 있지만 null은 될 수 없습니다. + 동적 메서드의 반환 형식을 지정하는 개체이거나, 메서드에 반환 형식이 없는 경우에는 null입니다. + 동적 메서드의 매개 변수 형식을 지정하는 개체로 이루어진 배열이거나, 메서드에 매개 변수가 없는 경우에는 null입니다. + 동적 메서드가 논리적으로 연결될 입니다.동적 메서드는 해당 형식의 모든 멤버에 액세스할 수 있습니다. + 동적 메서드의 MSIL에서 액세스하는 형식과 멤버에 대해 JIT 가시성 검사를 생략하려면 true이고, 그렇지 않으면 false입니다. + + 의 요소가 null이거나 인 경우또는 가 인터페이스, 배열, 개방형 제네릭 형식, 또는 제네릭 형식이나 메서드의 형식 매개 변수인 경우 + + 가 null입니다. 또는가 null입니다. + + 이 null이거나, 가 true를 반환하는 형식인 경우 + + + 동적 메서드를 만들 때 지정된 특성을 가져옵니다. + 메서드의 특성을 나타내는 값의 비트 조합입니다. + + + 동적 메서드를 만들 때 지정된 호출 규칙을 가져옵니다. + 메서드의 호출 규칙을 나타내는 값 중 하나입니다. + + + 동적 메서드를 완성하고 이 메서드를 실행하는 데 사용할 수 있는 대리자를 만듭니다. + 동적 메서드를 실행하는 데 사용할 수 있는 지정된 형식의 대리자입니다. + 동적 메서드의 시그니처와 일치하는 시그니처를 갖는 대리자 형식입니다. + 동적 메서드에 메서드 본문이 없는 경우 + + 에 잘못된 수의 매개 변수나 잘못된 매개 변수 형식이 있는 경우 + + + 동적 메서드를 완성하고, 대리자 형식과 대리자가 바인딩될 개체를 지정하여 이 메서드를 실행하는 데 사용할 수 있는 대리자를 만듭니다. + 지정된 대상 개체와 함께 동적 메서드를 실행하는 데 사용할 수 있는 지정된 형식의 대리자입니다. + 동적 메서드의 시그니처와 일치하는 시그니처를 갖고 첫 번째 매개 변수는 없는 대리자 형식입니다. + 대리자가 바인딩될 개체입니다.동적 메서드의 첫 번째 매개 변수와 동일한 형식이어야 합니다. + 동적 메서드에 메서드 본문이 없는 경우 + + 이 동적 메서드의 첫 번째 매개 변수 형식과 동일하지 않고 이 형식에 할당할 수 없는 경우또는에 잘못된 수의 매개 변수나 잘못된 매개 변수 형식이 있는 경우 + + + 메서드를 선언하는 형식을 가져옵니다. 동적 메서드의 경우에는 항상 null입니다. + 항상 null입니다. + + + 기본 MSIL(Microsoft Intermediate Language) 스트림 크기인 64바이트로 메서드에 대한 MSIL 생성기를 반환합니다. + 메서드에 대한 개체입니다. + + + 지정된 MSIL(Microsoft Intermediate Language) 스트림 크기로 메서드에 대한 MSIL 생성기를 반환합니다. + 메서드에 대해 MSIL 스트림이 지정된 크기인 개체입니다. + MSIL 스트림의 크기(바이트)입니다. + + + 동적 메서드의 매개 변수를 반환합니다. + 동적 메서드의 매개 변수를 나타내는 개체의 배열입니다. + + + 메서드의 지역 변수가 0으로 초기화되는지 여부를 나타내는 값을 가져오거나 설정합니다. + 메서드의 지역 변수가 0으로 초기화되면 true이고, 그렇지 않으면 false입니다.기본값은 true입니다. + + + + 동적 메서드의 이름을 가져옵니다. + 메서드의 단순한 이름입니다. + + + 동적 메서드의 반환 매개 변수를 가져옵니다. + 항상 null입니다. + + + 동적 메서드의 반환 값 형식을 가져옵니다. + 현재 메서드의 반환 값 형식을 나타내는 이거나, 메서드에 반환 형식이 없는 경우 입니다. + + + 문자열로 표현된 메서드 시그니처를 반환합니다. + 메서드 시그니처를 나타내는 문자열입니다. + + + \ No newline at end of file diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml new file mode 100755 index 0000000..9d99f94 --- /dev/null +++ b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml @@ -0,0 +1,171 @@ + + + + System.Reflection.Emit.Lightweight + + + + Определяет и представляет динамический метод, который может быть скомпилирован, выполнен и удален.Удаленные методы доступны для сборки мусора. + + + Создает динамический метод, который является глобальным по отношению к модулю, указывая при этом имя метода, атрибуты, соглашение о вызове, возвращаемый тип, типы параметров, модуль, а также необходимость пропуска проверок видимости с помощью JIT-компилятора для типов и элементов, к которым получает доступ язык MSIL динамического метода. + Имя динамического метода.Это может быть строка нулевой длины, но не значение null. + Битовая комбинация значений , которые указывают атрибуты динамического метода.Единственной разрешенной комбинацией является и . + Соглашение о вызовах этого динамического метода.Значением должно быть . + Объект , определяющий тип возвращаемого значения данного динамического метода, или значение null, если метод не возвращает значение. + Массив объектов типа , определяющих типы параметров динамического метода, или null, если метод не имеет параметров. + + , представляющий модуль, с которым следует логически связать динамический метод. + Значение true, чтобы пропустить проверки видимости, выполняемые JIT-компилятором, для типов и членов, доступ к которым имеет язык MSIL динамического метода; в противном случае — значение false. + Элемент равен null или .– или – — модуль, предоставляющий анонимное размещение для динамических методов. + Параметр имеет значение null. – или –Параметр имеет значение null. + + является комбинацией флагов, отличных от и .– или –Значение не .– или – является типом, для которого возвращает значение true. + + + Создает динамический метод, указывая при этом имя метода, атрибуты, соглашение о вызове, возвращаемый тип, типы параметров, тип, с которым логически связан этот динамический метод, а также необходимость пропуска проверок видимости с помощью JIT-компилятора для типов и элементов, к которым получает доступ язык MSIL динамического метода. + Имя динамического метода.Это может быть строка нулевой длины, но не значение null. + Битовая комбинация значений , которые указывают атрибуты динамического метода.Единственной разрешенной комбинацией является и . + Соглашение о вызовах этого динамического метода.Значением должно быть . + Объект , определяющий тип возвращаемого значения данного динамического метода, или значение null, если метод не возвращает значение. + Массив объектов типа , определяющих типы параметров динамического метода, или null, если метод не имеет параметров. + Тип , с которым логически связан динамический метод.Динамический метод имеет доступ ко всем элементам этого типа. + Значение true, чтобы пропустить проверки видимости, выполняемые JIT-компилятором, для типов и членов, доступ к которым имеет язык MSIL динамического метода; в противном случае — значение false. + Элемент равен null или . – или – является интерфейсом, массивом, открытым универсальным типом или параметром типа универсального типа или метода. + Параметр имеет значение null. – или –Параметр имеет значение null. + + является комбинацией флагов, отличных от и .– или –Значение не .– или – является типом, для которого возвращает значение true. + + + Инициализирует анонимно размещенный динамический метод, указывая имя метода, возвращаемый тип и типы параметров. + Имя динамического метода.Это может быть строка нулевой длины, но не значение null. + Объект , определяющий тип возвращаемого значения данного динамического метода, или значение null, если метод не возвращает значение. + Массив объектов типа , определяющих типы параметров динамического метода, или null, если метод не имеет параметров. + Элемент равен null или . + Параметр имеет значение null. + + является типом, для которого возвращает значение true. + + + Инициализирует анонимно размещенный динамический метод, указывая при этом имя метода, возвращаемый тип, типы параметров, модуль, а также необходимость пропуска проверок видимости с помощью JIT-компилятора для типов и элементов, к которым получает доступ язык MSIL динамического метода. + Имя динамического метода.Это может быть строка нулевой длины, но не значение null. + Объект , определяющий тип возвращаемого значения данного динамического метода, или значение null, если метод не возвращает значение. + Массив объектов типа , определяющих типы параметров динамического метода, или null, если метод не имеет параметров. + true для пропуска проверок видимости с помощью JIT-компилятора для всех типов и элементом, к которым есть доступ у языка MSIL динамического метода. При таком ограничении уровень доверия сборок, содержащих эти типы и элементы, должен не превышать уровень доверия стека вызовов, который выпустил динамический метод; в противном случае — значение false. + Элемент равен null или . + Параметр имеет значение null. + + является типом, для которого возвращает значение true. + + + Создает динамический метод, который является глобальным по отношению к модулю, указывая имя метода, возвращаемый тип, типы параметров и модуль. + Имя динамического метода.Это может быть строка нулевой длины, но не значение null. + Объект , определяющий тип возвращаемого значения данного динамического метода, или значение null, если метод не возвращает значение. + Массив объектов типа , определяющих типы параметров динамического метода, или null, если метод не имеет параметров. + + , представляющий модуль, с которым следует логически связать динамический метод. + Элемент равен null или . – или – — модуль, предоставляющий анонимное размещение для динамических методов. + Параметр имеет значение null. – или –Параметр имеет значение null. + + является типом, для которого возвращает значение true. + + + Создает динамический метод, который является глобальным по отношению к модулю, указывая при этом имя метода, возвращаемый тип, типы параметров, модуль, а также необходимость пропуска проверок видимости с помощью JIT-компилятора для типов и элементов, к которым получает доступ язык MSIL динамического метода. + Имя динамического метода.Это может быть строка нулевой длины, но не значение null. + Объект , определяющий тип возвращаемого значения данного динамического метода, или значение null, если метод не возвращает значение. + Массив объектов типа , определяющих типы параметров динамического метода, или null, если метод не имеет параметров. + + , представляющий модуль, с которым следует логически связать динамический метод. + Значение true, чтобы пропустить проверки видимости, выполняемые JIT-компилятором, для типов и членов, доступ к которым имеет язык MSIL динамического метода. + Элемент равен null или . – или – — модуль, предоставляющий анонимное размещение для динамических методов. + Параметр имеет значение null. – или –Параметр имеет значение null. + + является типом, для которого возвращает значение true. + + + Создает динамический метод, указывая имя метода, возвращаемый тип, типы параметров и тип, с которым логически связан этот динамический метод. + Имя динамического метода.Это может быть строка нулевой длины, но не значение null. + Объект , определяющий тип возвращаемого значения данного динамического метода, или значение null, если метод не возвращает значение. + Массив объектов типа , определяющих типы параметров динамического метода, или null, если метод не имеет параметров. + Тип , с которым логически связан динамический метод.Динамический метод имеет доступ ко всем элементам этого типа. + Элемент равен null или .– или – является интерфейсом, массивом, открытым универсальным типом или параметром типа универсального типа или метода. + Параметр имеет значение null. – или –Параметр имеет значение null. + + равен null или является типом, для которого возвращает значение true. + + + Создает динамический метод, указывая при этом имя метода, возвращаемый тип, типы параметров, тип, с которым логически связан этот динамический метод, а также необходимость пропуска проверок видимости с помощью JIT-компилятора для типов и элементов, к которым получает доступ язык MSIL динамического метода. + Имя динамического метода.Это может быть строка нулевой длины, но не значение null. + Объект , определяющий тип возвращаемого значения данного динамического метода, или значение null, если метод не возвращает значение. + Массив объектов типа , определяющих типы параметров динамического метода, или null, если метод не имеет параметров. + Тип , с которым логически связан динамический метод.Динамический метод имеет доступ ко всем элементам этого типа. + Значение true, чтобы пропустить проверки видимости, выполняемые JIT-компилятором, для типов и членов, доступ к которым имеет язык MSIL динамического метода; в противном случае — значение false. + Элемент равен null или .– или – является интерфейсом, массивом, открытым универсальным типом или параметром типа универсального типа или метода. + Параметр имеет значение null. – или –Параметр имеет значение null. + + равен null или является типом, для которого возвращает значение true. + + + Возвращает атрибуты, указанные при создании динамического метода. + Битовая комбинация значений , представляющих атрибуты этого метода. + + + Возвращает соглашение о вызове, указанное при создании динамического метода. + Одно из значений , указывающее соглашение о вызове для этого метода. + + + Завершает динамический метод и создает делегата, который может быть использован для запуска метода. + Делегат указанного типа, который может использоваться для запуска динамического метода. + Тип делегата, сигнатура которого совпадает с сигнатурой динамического метода. + Динамический метод не содержит основного текста метода. + + содержит неверное количество параметров или недопустимые типы параметров. + + + Завершает динамический метод и создает делегата, который может быть использован для его вызова, указывая при этом тип делегата и объект, к которому привязан этот делегат. + Делегат указанного типа, который может использоваться для запуска динамического метода с указанным объектом назначения. + Тип делегата, подпись которого совпадает с сигнатурой динамического метода, за исключением первого параметра. + Объект, к которому привязан делегат.Должен быть того же типа, что и первый параметр динамического метода. + Динамический метод не содержит основного текста метода. + Параметр не является тем же типом, что и первый параметр динамического метода, и не может быть назначен для этого типа.– или – содержит неверное количество параметров или недопустимые типы параметров. + + + Получает тип, объявляющий метод, который всегда равен null для динамических методов. + Всегда null. + + + Возвращает генератор MSIL для этого метода с используемым по умолчанию 64-байтным потоком MSIL. + Объект для этого метода. + + + Возвращает генератор MSIL для метода с указанным размером потока MSIL. + Объект для метода с указанным размером потока MSIL. + Размер потока языка MSIL в байтах. + + + Возвращает параметры динамического метода. + Массив объектов , предоставляющих параметры данного динамического метода. + + + Возвращает или задает значение, указывающее, инициализируются ли локальные переменные в этом методе с нуля. + Значение true, если локальные переменные в методе инициализируются с нуля, в противном случае — false.Значение по умолчанию — true. + + + + Возвращает имя динамического метода. + Простое имя метода. + + + Получает возвращаемый параметр динамического метода. + Всегда null. + + + Возвращает тип возвращаемого значения для динамического метода. + Тип , представляющий тип возвращаемого значения текущего метода; , если метод не содержит возвращаемого типа. + + + Возвращает сигнатуру метода, представленную строкой. + Строка, представляющая подпись метода. + + + \ No newline at end of file diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml new file mode 100755 index 0000000..34a84b9 --- /dev/null +++ b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml @@ -0,0 +1,188 @@ + + + + System.Reflection.Emit.Lightweight + + + + 定义并表示一种可编译、执行和丢弃的动态方法。丢弃的方法可用于垃圾回收。 + + + 创建一个对模块全局有效的动态方法,指定方法名称、属性、调用约定、返回类型、参数类型和模块,并指定动态方法的 Microsoft 中间语言 (MSIL) 访问的类型和成员是否应跳过实时 (JIT) 可见性检查。 + 动态方法的名称。可以是长度为零的字符串,但不能为 null。 + + 值的按位组合,指定动态方法的属性。允许的唯一组合为 。 + 动态方法的调用约定。必须为 。 + 一个 对象,它指定动态方法的返回类型;如果方法没有返回类型,则为 null。 + 一个 对象数组,它指定动态方法的参数的类型;如果方法没有参数,则为 null。 + 一个 ,表示动态方法将与之逻辑关联的模块。 + 要跳过动态方法的 MSIL 访问的类型和成员的 JIT 可见性检查,则为 true;否则为 false。 + + 的一个元素为 null 或 。- 或 - 是为动态方法提供匿名承载的模块。 + + 为 null。- 或 - 为 null。 + + 是标志的组合,而不是 的组合。- 或 - 不是 。- 或 - 返回 true 的类型。 + + + 创建一个动态方法,指定方法名称、特性、调用约定、返回类型、参数类型、动态方法逻辑关联的类型,并指定动态方法的 Microsoft 中间语言 (MSIL) 访问的类型和成员是否应跳过实时 (JIT) 可见性检查。 + 动态方法的名称。可以是长度为零的字符串,但不能为 null。 + + 值的按位组合,指定动态方法的属性。允许的唯一组合为 。 + 动态方法的调用约定。必须为 。 + 一个 对象,它指定动态方法的返回类型;如果方法没有返回类型,则为 null。 + 一个 对象数组,它指定动态方法的参数的类型;如果方法没有参数,则为 null。 + 一个 ,动态方法与其逻辑关联。动态方法可以访问类型的所有成员。 + 要跳过动态方法的 MSIL 访问的类型和成员的 JIT 可见性检查,则为 true;否则为 false。 + + 的一个元素为 null 或 。- 或 - 是一个接口、一个数组、一个开放式泛型类型或一个泛型类型或方法的类型参数。 + + 为 null。- 或 - 为 null。 + + 是标志的组合,而不是 的组合。- 或 - 不是 。- 或 - 返回 true 的类型。 + + + 初始化匿名承载的动态方法,指定方法名称、返回类型和参数类型。 + 动态方法的名称。可以是长度为零的字符串,但不能为 null。 + 一个 对象,它指定动态方法的返回类型;如果方法没有返回类型,则为 null。 + 一个 对象数组,它指定动态方法的参数的类型;如果方法没有参数,则为 null。 + + 的一个元素为 null 或 + + 为 null。 + + 返回 true 的类型。 + + + 初始化匿名承载的动态方法,指定方法名称、返回类型、参数类型,并指定动态方法的 Microsoft 中间语言 (MSIL) 访问的类型和成员是否应跳过实时 (JIT) 可见性检查。 + 动态方法的名称。可以是长度为零的字符串,但不能为 null。 + 一个 对象,它指定动态方法的返回类型;如果方法没有返回类型,则为 null。 + 一个 对象数组,它指定动态方法的参数的类型;如果方法没有参数,则为 null。 + 若要跳过对动态方法的 MSIL 访问的类型和方法的 JIT 可见性检查,则为 true,前提是:包含这些类型和成员的程序集的信任级别必须等于或低于发出动态方法的调用堆栈的信任级别;否则为 false。 + + 的一个元素为 null 或 + + 为 null。 + + 返回 true 的类型。 + + + 创建一个对模块全局有效的动态方法,指定方法名称、返回类型、参数类型和模块。 + 动态方法的名称。可以是长度为零的字符串,但不能为 null。 + 一个 对象,它指定动态方法的返回类型;如果方法没有返回类型,则为 null。 + 一个 对象数组,它指定动态方法的参数的类型;如果方法没有参数,则为 null。 + 一个 ,表示动态方法将与之逻辑关联的模块。 + + 的一个元素为 null 或 。- 或 - 是为动态方法提供匿名承载的模块。 + + 为 null。- 或 - 为 null。 + + 返回 true 的类型。 + + + 创建一个对模块全局有效的动态方法,指定方法名称、返回类型、参数类型和模块,并指定动态方法的 Microsoft 中间语言 (MSIL) 访问的类型和成员是否应跳过实时 (JIT) 可见性检查。 + 动态方法的名称。可以是长度为零的字符串,但不能为 null。 + 一个 对象,它指定动态方法的返回类型;如果方法没有返回类型,则为 null。 + 一个 对象数组,它指定动态方法的参数的类型;如果方法没有参数,则为 null。 + 一个 ,表示动态方法将与之逻辑关联的模块。 + 要跳过对动态方法的 MSIL 访问的类型和成员的 JIT 可见性检查,则为 true。 + + 的一个元素为 null 或 。- 或 - 是为动态方法提供匿名承载的模块。 + + 为 null。- 或 - 为 null。 + + 返回 true 的类型。 + + + 创建一个动态方法,指定方法名称、返回类型、参数类型和动态方法逻辑关联的类型。 + 动态方法的名称。可以是长度为零的字符串,但不能为 null。 + 一个 对象,它指定动态方法的返回类型;如果方法没有返回类型,则为 null。 + 一个 对象数组,它指定动态方法的参数的类型;如果方法没有参数,则为 null。 + 一个 ,动态方法与其逻辑关联。动态方法可以访问类型的所有成员。 + + 的一个元素为 null 或 。- 或 - 是一个接口、一个数组、一个开放式泛型类型或一个泛型类型或方法的类型参数。 + + 为 null。- 或 - 为 null。 + + 为 null,或者为 返回 true 的类型。 + + + 创建一个动态方法,指定方法名称、返回类型、参数类型、动态方法逻辑关联的类型,并指定动态方法的 Microsoft 中间语言 (MSIL) 访问的类型和成员是否应跳过实时 (JIT) 可见性检查。 + 动态方法的名称。可以是长度为零的字符串,但不能为 null。 + 一个 对象,它指定动态方法的返回类型;如果方法没有返回类型,则为 null。 + 一个 对象数组,它指定动态方法的参数的类型;如果方法没有参数,则为 null。 + 一个 ,动态方法与其逻辑关联。动态方法可以访问类型的所有成员。 + 要跳过动态方法的 MSIL 访问的类型和成员的 JIT 可见性检查,则为 true;否则为 false。 + + 的一个元素为 null 或 。- 或 - 是一个接口、一个数组、一个开放式泛型类型或一个泛型类型或方法的类型参数。 + + 为 null。- 或 - 为 null。 + + 为 null,或者为 返回 true 的类型。 + + + 获取创建动态方法时指定的属性。 + + 值的按位组合,表示方法的属性。 + + + 获取创建动态方法时指定的调用约定。 + 一个 值,它指示方法的调用约定。 + + + 完成动态方法并创建一个可用于执行该方法的委托。 + 一个指定类型的委托,可用于执行动态方法。 + 一个签名与动态方法的签名匹配的委托类型。 + 动态方法没有方法体。 + + 的参数数量不正确,或者参数类型不正确。 + + + 完成动态方法并创建一个可用于执行该方法的委托,指定委托类型和委托绑定到的对象。 + 一个指定类型的委托,可用于对指定的目标对象执行动态方法。 + 一个签名与动态方法的签名匹配的委托类型,不包括第一个参数。 + 委托绑定到的对象。其类型必须与动态方法的第一个参数的类型相同。 + 动态方法没有方法体。 + + 的类型与动态方法的第一个参数的类型不同,不能赋值给该类型。- 或 - 的参数数量不正确,或者参数类型不正确。 + + + 获取声明方法的类型,对于动态方法,类型始终为 null。 + 始终为 null。 + + + 为该方法返回一个具有默认 MSIL 流大小(64 字节)的 Microsoft 中间语言 (MSIL) 生成器。 + 该方法的 对象。 + + + 为方法返回一个具有指定 MSIL 流大小的 Microsoft 中间语言 (MSIL) 生成器。 + 方法的 对象,具有指定的 MSIL 流大小。 + MSIL 流的大小,以字节为单位。 + + + 返回动态方法的参数。 + 一个 对象数组,表示动态方法的参数。 + + + 获取或设置一个值,该值指示方法中的局部变量是否初始化为零。 + 如果方法中的局部变量初始化为零,则为 true;否则为 false。默认值为 true。 + + + + 获取动态方法的名称。 + 方法的简称。 + + + 获取动态方法的返回参数。 + 始终为 null。 + + + 获取动态方法的返回值的类型。 + 一个 ,表示当前方法的返回值的类型;如果该方法没有返回类型,则为 + + + 返回方法的签名,以字符串表示。 + 表示方法签名的字符串。 + + + \ No newline at end of file diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml new file mode 100755 index 0000000..c5e3799 --- /dev/null +++ b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml @@ -0,0 +1,192 @@ + + + + System.Reflection.Emit.Lightweight + + + + 定義及表示可以編譯、執行和捨棄的動態方法。捨棄的方法可被記憶體回收。 + + + 為模組建立全域的動態方法,指定方法名稱、屬性、呼叫慣例、傳回型別、參數型別、模組,以及是否應當略過動態方法的 Microsoft intermediate language (MSIL) 所存取型別與成員的 Just-In-Time (JIT) 可視性檢查。 + 動態方法的名稱。這個名稱可以是零長度的字串,但不能是 null。 + + 值的位元組合,指定動態方法的屬性。允許的唯一組合是 。 + 動態方法的呼叫慣例。必須是 。 + 指定動態方法之傳回型別的 物件,如果方法沒有任何傳回型別則為 null。 + 指定動態方法之參數型別的 物件陣列,如果方法沒有任何參數則為 null。 + + ,表示動態方法在邏輯上與其相關聯的模組。 + 若為 true,則略過動態方法的 MSIL 所存取型別和成員的 JIT 可視性檢查,否則為 false。 + + 的一個項目是 null 或 。-或- 為模組,會提供動態方法的匿名裝載。 + + 為 null。-或- 為 null。 + + 之外的旗標組合。-或- 不是 。-或- 傳回 true 的型別。 + + + 建立動態方法,指定方法名稱、屬性、呼叫慣例、傳回型別、參數型別、與動態方法在邏輯上相關聯的型別,以及是否應略過動態方法的 Microsoft intermediate language (MSIL) 所存取型別和成員的 Just-In-Time (JIT) 可視性檢查。 + 動態方法的名稱。這個名稱可以是零長度的字串,但不能是 null。 + + 值的位元組合,指定動態方法的屬性。允許的唯一組合是 。 + 動態方法的呼叫慣例。必須是 。 + 指定動態方法之傳回型別的 物件,如果方法沒有任何傳回型別則為 null。 + 指定動態方法之參數型別的 物件陣列,如果方法沒有任何參數則為 null。 + 動態方法在邏輯上與其相關聯的 。動態方法可以存取型別的所有成員。 + 若為 true,則略過動態方法的 MSIL 所存取型別和成員的 JIT 可視性檢查,否則為 false。 + + 的一個項目是 null 或 。-或- 為介面、陣列、開放泛型型別,或泛型型別或方法的型別參數。 + + 為 null。-或- 為 null。 + + 之外的旗標組合。-或- 不是 。-或- 傳回 true 的型別。 + + + 初始化匿名裝載動態方法,指定方法名稱、傳回型別及參數型別。 + 動態方法的名稱。這個名稱可以是零長度的字串,但不能是 null。 + 指定動態方法之傳回型別的 物件,如果方法沒有任何傳回型別則為 null。 + 指定動態方法之參數型別的 物件陣列,如果方法沒有任何參數則為 null。 + + 的一個項目是 null 或 + + 為 null。 + + 傳回 true 的型別。 + + + 初始化匿名裝載動態方法,指定方法名稱、傳回型別、參數型別,以及是否應當略過動態方法的 Microsoft intermediate language (MSIL) 所存取型別與成員的 Just-In-Time (JIT) 可視性檢查。 + 動態方法的名稱。這個名稱可以是零長度的字串,但不能是 null。 + 指定動態方法之傳回型別的 物件,如果方法沒有任何傳回型別則為 null。 + 指定動態方法之參數型別的 物件陣列,如果方法沒有任何參數則為 null。 + 若為 true,則略過動態方法的 MSIL 所存取型別和成員的 JIT 可視性檢查,但有這項限制:包含這些型別和成員的組件信任層級,必須等於或低於發出動態方法之呼叫堆疊的信任層級,否則為 false。 + + 的一個項目是 null 或 + + 為 null。 + + 傳回 true 的型別。 + + + 為模組建立全域的動態方法,指定方法名稱、傳回型別、參數型別和模組。 + 動態方法的名稱。這個名稱可以是零長度的字串,但不能是 null。 + 指定動態方法之傳回型別的 物件,如果方法沒有任何傳回型別則為 null。 + 指定動態方法之參數型別的 物件陣列,如果方法沒有任何參數則為 null。 + + ,表示動態方法在邏輯上與其相關聯的模組。 + + 的一個項目是 null 或 。-或- 為模組,會提供動態方法的匿名裝載。 + + 為 null。-或- 為 null。 + + 傳回 true 的型別。 + + + 為模組建立全域的動態方法,指定方法名稱、傳回型別、參數型別、模組,以及是否應當略過動態方法的 Microsoft intermediate language (MSIL) 所存取型別與成員的 Just-In-Time (JIT) 可視性檢查。 + 動態方法的名稱。這個名稱可以是零長度的字串,但不能是 null。 + 指定動態方法之傳回型別的 物件,如果方法沒有任何傳回型別則為 null。 + 指定動態方法之參數型別的 物件陣列,如果方法沒有任何參數則為 null。 + + ,表示動態方法在邏輯上與其相關聯的模組。 + 若為 true,則略過動態方法的 MSIL 所存取型別和成員的 JIT 可視性檢查。 + + 的一個項目是 null 或 。-或- 為模組,會提供動態方法的匿名裝載。 + + 為 null。-或- 為 null。 + + 傳回 true 的型別。 + + + 建立動態方法,指定方法名稱、傳回型別、參數型別和動態方法在邏輯上與其相關聯的型別。 + 動態方法的名稱。這個名稱可以是零長度的字串,但不能是 null。 + 指定動態方法之傳回型別的 物件,如果方法沒有任何傳回型別則為 null。 + 指定動態方法之參數型別的 物件陣列,如果方法沒有任何參數則為 null。 + 動態方法在邏輯上與其相關聯的 。動態方法可以存取型別的所有成員。 + + 的一個項目是 null 或 。-或- 為介面、陣列、開放泛型型別,或泛型型別或方法的型別參數。 + + 為 null。-或- 為 null。 + + 是 null,或是 傳回 true 的型別。 + + + 建立動態方法,指定方法名稱、傳回型別、參數型別、與動態方法以邏輯方式相關聯的型別,以及是否應略過動態方法的 Microsoft intermediate language (MSIL) 所存取型別和成員的 Just-In-Time (JIT) 可視性檢查。 + 動態方法的名稱。這個名稱可以是零長度的字串,但不能是 null。 + 指定動態方法之傳回型別的 物件,如果方法沒有任何傳回型別則為 null。 + 指定動態方法之參數型別的 物件陣列,如果方法沒有任何參數則為 null。 + 動態方法在邏輯上與其相關聯的 。動態方法可以存取型別的所有成員。 + 若為 true,則略過動態方法的 MSIL 所存取型別和成員的 JIT 可視性檢查,否則為 false。 + + 的一個項目是 null 或 。-或- 為介面、陣列、開放泛型型別,或泛型型別或方法的型別參數。 + + 為 null。-或- 為 null。 + + 是 null,或是 傳回 true 的型別。 + + + 取得建立動態方法時指定的屬性。 + + 值的位元組合,表示方法的屬性。 + + + 取得建立動態方法時指定的呼叫慣例。 + 其中一個 值,表示方法的呼叫慣例。 + + + 完成動態方法,並建立可用於執行該動態方法的委派。 + 指定型別的委派,可用於執行動態方法。 + 簽章與動態方法相符的委派型別。 + 動態方法沒有方法主體。 + + 的參數數目錯誤或參數型別錯誤。 + + + 完成動態方法,並建立可用於執行該動態方法的委派,同時指定委派型別和委派繫結至的物件。 + 指定型別的委派,可用於執行具有指定目標物件的動態方法。 + 簽章與動態方法相符的委派型別,不包含第一個參數。 + 委派繫結至的物件。必須與動態方法的第一個參數型別相同。 + 動態方法沒有方法主體。 + + 與動態方法的第一個參數型別不同,無法指派給該型別。-或- 的參數數目錯誤或參數型別錯誤。 + + + 取得宣告方法的型別,對於動態方法而言一定是 null。 + 一定是 null。 + + + 傳回這個方法的 Microsoft intermediate language (MSIL) 產生器,且預設 MSIL 資料流大小為 64 個位元組。 + 方法的 物件。 + + + 傳回這個方法的 Microsoft intermediate language (MSIL) 產生器,且使用指定的 MSIL 資料流大小。 + 方法的 物件,具有指定的 MSIL 資料流大小。 + MSIL 緩衝區的大小,以位元組為單位。 + + + 傳回動態方法的參數。 + + 物件的陣列,表示動態方法的參數。 + + + 取得或設定值,指出方法中的區域變數是否以零起始。 + 如果方法中的區域變數以零起始則為 true,否則為 false。預設為 true。 + + + + 取得動態方法的名稱。 + 方法的簡單名稱。 + + + 取得動態方法的傳回參數。 + 一定是 null。 + + + 取得動態方法之傳回值的型別。 + 表示目前方法之傳回值型別的 ,如果方法沒有任何傳回型別則為 + + + 傳回方法的簽章,以字串表示。 + 表示方法簽章的字串。 + + + \ No newline at end of file diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/portable-net45+wp8/_._ b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/portable-net45+wp8/_._ new file mode 100755 index 0000000..e69de29 diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/wp80/_._ b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/wp80/_._ new file mode 100755 index 0000000..e69de29 diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/xamarinios10/_._ b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/xamarinios10/_._ new file mode 100755 index 0000000..e69de29 diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/xamarinmac20/_._ b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/xamarinmac20/_._ new file mode 100755 index 0000000..e69de29 diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/xamarintvos10/_._ b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/xamarintvos10/_._ new file mode 100755 index 0000000..e69de29 diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/xamarinwatchos10/_._ b/packages/System.Reflection.Emit.Lightweight.4.3.0/ref/xamarinwatchos10/_._ new file mode 100755 index 0000000..e69de29 diff --git a/packages/System.Reflection.Emit.Lightweight.4.3.0/runtimes/aot/lib/netcore50/_._ b/packages/System.Reflection.Emit.Lightweight.4.3.0/runtimes/aot/lib/netcore50/_._ new file mode 100755 index 0000000..e69de29 diff --git a/packages/YoutubeExplode.Extensions.0.0.2/.signature.p7s b/packages/YoutubeExplode.Extensions.0.0.2/.signature.p7s new file mode 100755 index 0000000..73c0b72 Binary files /dev/null and b/packages/YoutubeExplode.Extensions.0.0.2/.signature.p7s differ diff --git a/packages/YoutubeExplode.Extensions.0.0.2/YoutubeExplode.Extensions.0.0.2.nupkg b/packages/YoutubeExplode.Extensions.0.0.2/YoutubeExplode.Extensions.0.0.2.nupkg new file mode 100755 index 0000000..40d0adc Binary files /dev/null and b/packages/YoutubeExplode.Extensions.0.0.2/YoutubeExplode.Extensions.0.0.2.nupkg differ diff --git a/packages/YoutubeExplode.Extensions.0.0.2/lib/net461/YoutubeExplode.Extensions.dll b/packages/YoutubeExplode.Extensions.0.0.2/lib/net461/YoutubeExplode.Extensions.dll new file mode 100755 index 0000000..2b49d40 Binary files /dev/null and b/packages/YoutubeExplode.Extensions.0.0.2/lib/net461/YoutubeExplode.Extensions.dll differ diff --git a/packages/YoutubeExplode.Extensions.0.0.2/lib/netstandard2.0/YoutubeExplode.Extensions.dll b/packages/YoutubeExplode.Extensions.0.0.2/lib/netstandard2.0/YoutubeExplode.Extensions.dll new file mode 100755 index 0000000..ce2fa65 Binary files /dev/null and b/packages/YoutubeExplode.Extensions.0.0.2/lib/netstandard2.0/YoutubeExplode.Extensions.dll differ diff --git a/packages/YoutubeExplode.Extensions.0.0.2/lib/netstandard2.1/YoutubeExplode.Extensions.dll b/packages/YoutubeExplode.Extensions.0.0.2/lib/netstandard2.1/YoutubeExplode.Extensions.dll new file mode 100755 index 0000000..75cc552 Binary files /dev/null and b/packages/YoutubeExplode.Extensions.0.0.2/lib/netstandard2.1/YoutubeExplode.Extensions.dll differ diff --git a/youtube-downloader.csproj b/youtube-downloader.csproj index 950e53c..6fa62f0 100644 --- a/youtube-downloader.csproj +++ b/youtube-downloader.csproj @@ -118,6 +118,21 @@ packages\CookiesTxtParser.1.0.1\lib\netstandard2.0\CookiesTxtParser.dll + + packages\ExposedObject.2.1.0\lib\net461\ExposedObject.dll + + + packages\Stef.Validation.0.0.4\lib\net40\Stef.Validation.dll + + + packages\Jurassic.3.2.4\lib\netstandard2.0\Jurassic.dll + + + packages\Flurl.3.0.2\lib\net461\Flurl.dll + + + packages\YoutubeExplode.Extensions.0.0.2\lib\net461\YoutubeExplode.Extensions.dll +