summaryrefslogtreecommitdiff
path: root/vala/valaunlockstatement.vala
Commit message (Collapse)AuthorAgeFilesLines
* vala: Improve source documentationRico Tzschichholz2020-05-271-1/+3
|
* vala: Remove some public API from expressions and statementsRico Tzschichholz2020-03-241-1/+1
|
* vala: Compact classes don't allow private/class fields and to lock fieldsRico Tzschichholz2018-11-171-0/+9
| | | | This conveniently moves 2 error reports from codegen to semantic check too.
* vala: Fix several AST construction/parenting issuesRico Tzschichholz2018-10-231-1/+9
|
* vala: Add missing replace_expression() implementationsLuca Bruno2018-10-231-0/+6
|
* vala: Transform Lockable.*_lock_used() methods into "lock_used" propertyRico Tzschichholz2018-04-251-1/+1
|
* Replace SemanticAnalyzer with CodeContext in CodeNode.check parameterJürg Billeter2010-10-281-3/+3
|
* Use emit instead of accept and accept_children in code generatorJürg Billeter2010-08-101-1/+7
|
* Fix lock statementJiří Zárevúcky2010-03-241-0/+70
This patch converts lock statements into try finally statements to ensure that unlock is always called. Fixes bug 582553.