| 308 | } |
| 309 | |
| 310 | void init_property_set() |
| 311 | { |
| 312 | { |
| 313 | char const * args[] = { "raw-properties", "*", 0 }; |
| 314 | declare_native_rule( "property-set", "create", args, property_set_create, 1 ); |
| 315 | } |
| 316 | { |
| 317 | char const * args[] = { "feature", 0 }; |
| 318 | declare_native_rule( "class@property-set", "get", args, property_set_get, 1 ); |
| 319 | } |
| 320 | { |
| 321 | char const * args[] = { "features", "*", 0 }; |
| 322 | declare_native_rule( "class@property-set", "contains-features", args, property_set_contains_features, 1 ); |
| 323 | } |
| 324 | ps_map_init( &all_property_sets ); |
| 325 | } |
| 326 | |
| 327 | void property_set_done() |
| 328 | { |
no test coverage detected