summaryrefslogtreecommitdiff
path: root/tests/chainup
diff options
context:
space:
mode:
Diffstat (limited to 'tests/chainup')
-rw-r--r--tests/chainup/method-lambda-base.c-expected12
-rw-r--r--tests/chainup/no-chainup.c-expected12
2 files changed, 12 insertions, 12 deletions
diff --git a/tests/chainup/method-lambda-base.c-expected b/tests/chainup/method-lambda-base.c-expected
index f8ce82308..bfc708fd0 100644
--- a/tests/chainup/method-lambda-base.c-expected
+++ b/tests/chainup/method-lambda-base.c-expected
@@ -100,8 +100,8 @@ static void bar_execute (Bar* self,
Func func,
gpointer func_target);
static void bar_real_foo (Foo* base);
-static void __lambda4_ (Bar* self);
-static void ___lambda4__func (gpointer self);
+static void _vala_lambda0_ (Bar* self);
+static void __vala_lambda0__func (gpointer self);
VALA_EXTERN Bar* bar_new (void);
VALA_EXTERN Bar* bar_construct (GType object_type);
static GType bar_get_type_once (void);
@@ -348,15 +348,15 @@ bar_execute (Bar* self,
}
static void
-__lambda4_ (Bar* self)
+_vala_lambda0_ (Bar* self)
{
FOO_CLASS (bar_parent_class)->foo (G_TYPE_CHECK_INSTANCE_CAST (self, TYPE_FOO, Foo));
}
static void
-___lambda4__func (gpointer self)
+__vala_lambda0__func (gpointer self)
{
- __lambda4_ ((Bar*) self);
+ _vala_lambda0_ ((Bar*) self);
}
static void
@@ -364,7 +364,7 @@ bar_real_foo (Foo* base)
{
Bar * self;
self = G_TYPE_CHECK_INSTANCE_CAST (base, TYPE_BAR, Bar);
- bar_execute (self, ___lambda4__func, self);
+ bar_execute (self, __vala_lambda0__func, self);
}
Bar*
diff --git a/tests/chainup/no-chainup.c-expected b/tests/chainup/no-chainup.c-expected
index 252628c60..698271f80 100644
--- a/tests/chainup/no-chainup.c-expected
+++ b/tests/chainup/no-chainup.c-expected
@@ -75,8 +75,8 @@ VALA_EXTERN Foo* foo_new (void);
VALA_EXTERN Foo* foo_construct (GType object_type);
VALA_EXTERN Foo* foo_new_foo (void);
VALA_EXTERN Foo* foo_construct_foo (GType object_type);
-static gboolean __lambda4_ (Foo* self);
-static gboolean ___lambda4__gsource_func (gpointer self);
+static gboolean _vala_lambda0_ (Foo* self);
+static gboolean __vala_lambda0__gsource_func (gpointer self);
static void foo_finalize (Foo * obj);
static GType foo_get_type_once (void);
VALA_EXTERN GType bar_get_type (void) G_GNUC_CONST ;
@@ -107,7 +107,7 @@ foo_new (void)
}
static gboolean
-__lambda4_ (Foo* self)
+_vala_lambda0_ (Foo* self)
{
gboolean result;
result = TRUE;
@@ -115,10 +115,10 @@ __lambda4_ (Foo* self)
}
static gboolean
-___lambda4__gsource_func (gpointer self)
+__vala_lambda0__gsource_func (gpointer self)
{
gboolean result;
- result = __lambda4_ ((Foo*) self);
+ result = _vala_lambda0_ ((Foo*) self);
return result;
}
@@ -130,7 +130,7 @@ foo_construct_foo (GType object_type)
gpointer f_target;
GDestroyNotify f_target_destroy_notify;
self = (Foo*) g_type_create_instance (object_type);
- f = ___lambda4__gsource_func;
+ f = __vala_lambda0__gsource_func;
f_target = foo_ref (self);
f_target_destroy_notify = foo_unref;
f (f_target);