2
0
Эх сурвалжийг харах

Note haxe.Json in JsonParser/JsonPrinter documentation.

Dan Korostelev 11 жил өмнө
parent
commit
2872050671

+ 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 {
 
 	/**