Lines Matching full:comments
44 ucl_object_t *obj, *cur, *ar, *ar1, *ref, *test_obj, *comments; in main() local
203 /* Comments */ in main()
205 comments = ucl_object_typed_new (UCL_OBJECT); in main()
208 ucl_comments_add (comments, found, "# test comment"); in main()
209 assert (ucl_comments_find (comments, found) != NULL); in main()
210 assert (ucl_comments_find (comments, test) == NULL); in main()
211 ucl_comments_move (comments, found, test); in main()
212 assert (ucl_comments_find (comments, found) == NULL); in main()
213 assert (ucl_comments_find (comments, test) != NULL); in main()
277 assert (ucl_object_emit_full (obj, UCL_EMIT_CONFIG, fn, comments)); in main()
281 ucl_object_unref (comments); in main()