OLD | NEW |
---|---|
(Empty) | |
1 { | |
2 // This file specifies all the methods in CSSPropertyAPI.h and the neces sary | |
3 // information for code generation of the API and it's related classes. | |
4 parameters: { | |
5 name: { | |
6 default: "", | |
7 valid_type: "str", | |
8 }, | |
9 | |
10 signature: { | |
11 default: "", | |
12 valid_type: "str", | |
13 }, | |
14 | |
15 function_ptr: { | |
16 default: "", | |
17 valid_type: "str", | |
18 } | |
19 }, | |
20 data: [ | |
21 { | |
22 name: "parseSingleValue", | |
sashab
2017/02/09 04:36:28
Fix indentation
| |
23 signature: "static const CSSValue* parseSingleValue(CSSParserTok enRange&, const CSSParserContext*);", | |
24 function_ptr: "static const CSSValue* (*parseSingleValue)(CSSPar serTokenRange&, const CSSParserContext*);" | |
25 }, | |
26 { | |
27 name: "parseShorthand", | |
28 signature: "static bool parseShorthand(bool, CSSParserTokenRange &, const CSSParserContext*)", | |
29 function_ptr: "bool (*parseShorthand)(bool, CSSParserTokenRange& , const CSSParserContext*);" | |
30 }, | |
31 ] | |
32 } | |
OLD | NEW |