try to use a new formatter for date and decimal

This commit is contained in:
Liu Ming
2017-07-26 17:56:49 +08:00
parent ce73093973
commit d3f14f70d8
9 changed files with 408 additions and 12 deletions

13
format/lang.go Normal file
View File

@@ -0,0 +1,13 @@
package format
const T_YEAR_MARK string = "T_YEAR_MARK"
const T_MONTH_MARK string = "T_MONTH_MARK"
const T_DAY_MARK string = "T_DAY_MARK"
const T_RAW_MARK string = "T_RAW_MARK"
const T_EOF string = "T_EOF"
const T_STRING_MARK string = "T_STRING_MARK"
const T_DECIMAL_MARK string = "T_DECIMAL_MARK"
const T_COMMA_MARK string = "T_COMMA_MARK"