[vala/wip/valadate: 59/60] Don't use keywords as variable names
- From: Rico Tzschichholz <ricotz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vala/wip/valadate: 59/60] Don't use keywords as variable names
- Date: Tue, 3 Jan 2017 16:07:25 +0000 (UTC)
commit 8a0aeae983aa3fb497e9efa6c195d1e67cbc60ab
Author: Rico Tzschichholz <ricotz ubuntu com>
Date: Mon Sep 26 20:20:50 2016 +0200
Don't use keywords as variable names
valadate/testexplorer.vala | 40 ++++++++++++++++++++--------------------
1 files changed, 20 insertions(+), 20 deletions(-)
---
diff --git a/valadate/testexplorer.vala b/valadate/testexplorer.vala
index d73fae3..df7a0b8 100644
--- a/valadate/testexplorer.vala
+++ b/valadate/testexplorer.vala
@@ -74,39 +74,39 @@ internal class Valadate.TestExplorer : Vala.CodeVisitor {
context.verbose_mode = false;
}
- public override void visit_class (Vala.Class class) {
+ public override void visit_class (Vala.Class cl) {
try {
- if (is_subtype_of (class, "Valadate.TestCase") &&
- class.is_abstract != true)
- current.add_test (visit_testcase (class));
- else if (is_subtype_of (class, "Valadate.TestSuite") &&
- class.is_abstract != true)
- current.add_test (visit_testsuite (class));
+ if (is_subtype_of (cl, "Valadate.TestCase") &&
+ cl.is_abstract != true)
+ current.add_test (visit_testcase (cl));
+ else if (is_subtype_of (cl, "Valadate.TestSuite") &&
+ cl.is_abstract != true)
+ current.add_test (visit_testsuite (cl));
} catch (TestModuleError e) {
error (e.message);
}
- class.accept_children (this);
+ cl.accept_children (this);
}
- private bool is_subtype_of (Vala.Class class, string typename) {
- foreach (var basetype in class.get_base_types ())
+ private bool is_subtype_of (Vala.Class cl, string typename) {
+ foreach (var basetype in cl.get_base_types ())
if (((Vala.UnresolvedType)basetype).to_qualified_string () == typename)
return true;
return false;
}
- private unowned Constructor get_constructor (Vala.Class class) throws TestModuleError {
- var attr = new Vala.CCodeAttribute (class.default_construction_method);
+ private unowned Constructor get_constructor (Vala.Class cl) throws TestModuleError {
+ var attr = new Vala.CCodeAttribute (cl.default_construction_method);
return (Constructor)module.get_method (attr.name);
}
- public TestCase visit_testcase (Vala.Class testclass) throws TestModuleError {
- unowned Constructor meth = get_constructor(testclass);
+ public TestCase visit_testcase (Vala.Class cl) throws TestModuleError {
+ unowned Constructor meth = get_constructor (cl);
var current_test = meth () as TestCase;
- current_test.name = testclass.name;
+ current_test.name = cl.name;
- foreach (var method in testclass.get_methods ()) {
+ foreach (var method in cl.get_methods ()) {
if (method.name.has_prefix ("test_") &&
method.has_result != true &&
method.get_parameters ().size == 0) {
@@ -120,7 +120,7 @@ internal class Valadate.TestExplorer : Vala.CodeVisitor {
testmethod = (TestMethod)module.get_method (attr.name);
if (testmethod != null) {
- current_test.add_test (method.name, ()=> {
+ current_test.add_test (method.name, () => {
testmethod (current_test);
});
}
@@ -129,10 +129,10 @@ internal class Valadate.TestExplorer : Vala.CodeVisitor {
return current_test;
}
- public TestSuite visit_testsuite (Vala.Class testclass) throws TestModuleError {
- unowned Constructor meth = get_constructor (testclass);
+ public TestSuite visit_testsuite (Vala.Class cl) throws TestModuleError {
+ unowned Constructor meth = get_constructor (cl);
var current_test = meth () as TestSuite;
- current_test.name = testclass.name;
+ current_test.name = cl.name;
return current_test;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]