json: Enable tag parser and adapt test case for Geany

This commit is contained in:
Colomban Wendling 2015-01-31 22:14:10 +01:00
parent 0bd9585704
commit 270e32327f
4 changed files with 28 additions and 25 deletions

View File

@ -5,6 +5,7 @@ primary=true false null
[settings]
lexer_filetype=Javascript
tag_parser=JSON
extension=json
mime_type=application/json

View File

@ -69,12 +69,12 @@ typedef enum {
static langType Lang_json;
static kindOption JsonKinds [] = {
{ TRUE, 'o', "object", "objects" },
{ TRUE, 'a', "array", "arrays" },
{ TRUE, 'n', "number", "numbers" },
{ TRUE, 's', "string", "strings" },
{ TRUE, 'b', "boolean", "booleans" },
{ TRUE, 'z', "null", "nulls" }
{ TRUE, 'o', "member", "objects" },
{ TRUE, 'a', "member", "arrays" },
{ TRUE, 'n', "member", "numbers" },
{ TRUE, 's', "member", "strings" },
{ TRUE, 'b', "member", "booleans" },
{ TRUE, 'z', "member", "nulls" }
};
static tokenInfo *newToken (void)

View File

@ -246,6 +246,7 @@ test_sources = \
simple.d \
simple.html \
simple.js \
simple.json \
simple.ksh \
simple.lua \
simple.mak \

View File

@ -1,19 +1,20 @@
0 input.json /^ {$/;" o array:phoneNumbers
1 input.json /^ {$/;" o array:phoneNumbers
address input.json /^ "address": {$/;" o
age input.json /^ "age": 25,$/;" n
children input.json /^ "children": [],$/;" a
city input.json /^ "city": "New York",$/;" s object:address
firstName input.json /^ "firstName": "John",$/;" s
height_cm input.json /^ "height_cm": 167.6,$/;" n
isAlive input.json /^ "isAlive": true,$/;" b
lastName input.json /^ "lastName": "Smith",$/;" s
number input.json /^ "number": "212 555-1234"$/;" s object:phoneNumbers.0
number input.json /^ "number": "646 555-4567"$/;" s object:phoneNumbers.1
phoneNumbers input.json /^ "phoneNumbers": [$/;" a
postalCode input.json /^ "postalCode": "10021-3100"$/;" s object:address
spouse input.json /^ "spouse": null$/;" z
state input.json /^ "state": "NY",$/;" s object:address
streetAddress input.json /^ "streetAddress": "21 2nd Street",$/;" s object:address
type input.json /^ "type": "home",$/;" s object:phoneNumbers.0
type input.json /^ "type": "office",$/;" s object:phoneNumbers.1
# format=tagmanager
0Ì64ÎphoneNumbersÖ0
1Ì64ÎphoneNumbersÖ0
addressÌ64Ö0
ageÌ64Ö0
childrenÌ64Ö0
cityÌ64ÎaddressÖ0
firstNameÌ64Ö0
height_cmÌ64Ö0
isAliveÌ64Ö0
lastNameÌ64Ö0
numberÌ64ÎphoneNumbers.0Ö0
numberÌ64ÎphoneNumbers.1Ö0
phoneNumbersÌ64Ö0
postalCodeÌ64ÎaddressÖ0
spouseÌ64Ö0
stateÌ64ÎaddressÖ0
streetAddressÌ64ÎaddressÖ0
typeÌ64ÎphoneNumbers.0Ö0
typeÌ64ÎphoneNumbers.1Ö0