Documentation
¶
Overview ¶
Copyright © 2024 Emmanuel Ozeh github.com/ozedd-ee
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
Copyright © 2024 Emmanuel Ozeh github.com/ozedd-ee
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
Index ¶
Constants ¶
const ( QUOTE = `"` LEFTBRACE = "{" RIGHTBRACE = "}" LEFTBRACKET = "[" RIGHTBRACKET = "]" WHITESPACE = " " COMMA = "," COLON = ":" )
const FALSE_LEN = 5
const NIL_LEN = 3
const TRUE_LEN = 4
Variables ¶
var STRUCTURAL_TOKENS = []string{"{", "}", ":", ",", "[", "]"}
var VALID_NUMBER_CHAR = []string{"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "-", "."}