Browse Source

Note haxe.Json in JsonParser/JsonPrinter documentation.

Dan Korostelev 11 years ago
parent
commit
2872050671
2 changed files with 12 additions and 0 deletions
  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;
 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 {
 class JsonParser {
 
 
 	/**
 	/**

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

@@ -21,6 +21,12 @@
  */
  */
 package haxe.format;
 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 {
 class JsonPrinter {
 
 
 	/**
 	/**