Explorar o código

Note haxe.Json in JsonParser/JsonPrinter documentation.

Dan Korostelev %!s(int64=11) %!d(string=hai) anos
pai
achega
2872050671
Modificáronse 2 ficheiros con 12 adicións e 0 borrados
  1. 6 0
      std/haxe/format/JsonParser.hx
  2. 6 0
      std/haxe/format/JsonPrinter.hx

+ 6 - 0
std/haxe/format/JsonParser.hx

@@ -21,6 +21,12 @@
  */
 package haxe.format;
 
+/**
+	An implementation of JSON parser in Haxe.
+
+	This class is used by `haxe.Json` when native JSON implementation
+	is not available.
+**/
 class JsonParser {
 
 	/**

+ 6 - 0
std/haxe/format/JsonPrinter.hx

@@ -21,6 +21,12 @@
  */
 package haxe.format;
 
+/**
+	An implementation of JSON printer in Haxe.
+
+	This class is used by `haxe.Json` when native JSON implementation
+	is not available.
+**/
 class JsonPrinter {
 
 	/**