]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Make BinaryExpression.get_operator_string public
authorJürg Billeter <j@bitron.ch>
Tue, 9 Mar 2010 22:06:35 +0000 (23:06 +0100)
committerJürg Billeter <j@bitron.ch>
Tue, 9 Mar 2010 22:06:35 +0000 (23:06 +0100)
vala/valabinaryexpression.vala

index 67ad50d008a795c35c5641d26585d78f5249ecf2..ed598f707b84debe19597d917ff7d0c240d0d512 100644 (file)
@@ -97,7 +97,7 @@ public class Vala.BinaryExpression : Expression {
                }
        }
 
-       private string get_operator_string () {
+       public string get_operator_string () {
                switch (_operator) {
                case BinaryOperator.PLUS: return "+";
                case BinaryOperator.MINUS: return "-";