~vcs-imports/vala/trunk

« back to all changes in this revision

Viewing changes to tests/gir/gtype-struct-name.vapi-expected

  • Committer: Rico Tzschichholz
  • Date: 2022-09-12 06:29:48 UTC
  • Revision ID: git-v1:841ac8c8c963e6fe0e74f82b7880a7049704bf14
tests: Split up gir parser tests into dedicated files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
[CCode (cprefix = "Test", gir_namespace = "Test", gir_version = "1.0", lower_case_cprefix = "test_")]
 
2
namespace Test {
 
3
        [CCode (cheader_filename = "test.h", type_cname = "TestBarKlass", type_id = "test_bar_get_type ()")]
 
4
        public class Bar : GLib.Object {
 
5
                [CCode (has_construct_function = false)]
 
6
                protected Bar ();
 
7
        }
 
8
        [CCode (cheader_filename = "test.h", type_cname = "TestFooInterface", type_id = "test_foo_get_type ()")]
 
9
        public interface Foo : GLib.Object {
 
10
        }
 
11
}