Browse Source

Note haxe.Json in JsonParser/JsonPrinter documentation.

Dan Korostelev 11 năm trước cách đây
mục cha
commit
2872050671
2 tập tin đã thay đổi với 12 bổ sung0 xóa
  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 {
 
 	/**