youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 7f3e33a1475cd4ac11c73108e03d3405b86262b8
parent b7558d9881ae0dede7c13e1c082eaf89aefed27e
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Mon, 17 Nov 2014 01:27:34 +0100

[swfinterp] Implement member assignment

Diffstat:
Atest/swftests/MemberAssignment.as | 22++++++++++++++++++++++
1 file changed, 22 insertions(+), 0 deletions(-)

diff --git a/test/swftests/MemberAssignment.as b/test/swftests/MemberAssignment.as @@ -0,0 +1,22 @@ +// input: [1] +// output: 2 + +package { +public class MemberAssignment { + public var v:int; + + public function g():int { + return this.v; + } + + public function f(a:int):int{ + this.v = a; + return this.v + this.g(); + } + + public static function main(a:int): int { + var v:MemberAssignment = new MemberAssignment(); + return v.f(a); + } +} +}