소스 검색

Note haxe.Json in JsonParser/JsonPrinter documentation.

Dan Korostelev 11 년 전
부모
커밋
2872050671
2개의 변경된 파일12개의 추가작업 그리고 0개의 파일을 삭제
  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 {
 
 	/**