[Libreoffice-commits] .: idlc/test

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Tue Jan 29 00:54:52 PST 2013


 idlc/test/parser/attribute.tests |   10 ++++++++++
 1 file changed, 10 insertions(+)

New commits:
commit 2a54af218c336150c6b0b3cb259ed7dce2f4ddf3
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue Jan 29 09:54:38 2013 +0100

    Clarify that bound attribute can specify getter/setter raises lists
    
    Change-Id: I49ffee7c1e65d8e79865e5b596d18111e0c64279

diff --git a/idlc/test/parser/attribute.tests b/idlc/test/parser/attribute.tests
index d5814ac..1e9b28d 100644
--- a/idlc/test/parser/attribute.tests
+++ b/idlc/test/parser/attribute.tests
@@ -220,3 +220,13 @@ EXPECT SUCCESS "attribute.tests 27":
 interface I1 {
     [attribute, bound, readonly] long a;
 };
+
+
+EXPECT SUCCESS "atribute.tests 28":
+exception E1 {};
+interface I1 {
+    [attribute, bound] long a {
+        get raises (E1);
+        set raises (E1);
+    };
+};


More information about the Libreoffice-commits mailing list