Indentations break the feed.
[SquirrelJME.git] / modules / cldc-compact / src / test / resources / lang / bytecode / TestInvokeSpecialPPInSuperSelf.j
blob1438d88fc1de4763d7b944202bd7e38137085ae3
1 ; -*- Mode: Jasmin; indent-tabs-mode: t; tab-width: 4 -*-
2 ; ---------------------------------------------------------------------------
3 ; Multi-Phasic Applications: SquirrelJME
4 ; Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 ; ---------------------------------------------------------------------------
6 ; SquirrelJME is under the GNU General Public License v3+, or later.
7 ; See license.mkd for licensing and copyright information.
8 ; ---------------------------------------------------------------------------
10 ; Similar to TestInvokeSpecialPPSuper, but uses the current this class
11 ; directly
13 .class public lang/bytecode/TestInvokeSpecialPPInSuperSelf
14 .super lang/bytecode/__SuperWithPP__
16 .method public <init>()V
17 aload 0
18 invokenonvirtual lang/bytecode/__SuperWithPP__/<init>()V
19 return
20 .end method
22 .method public test()I
23 .limit stack 3
24 ; Perform the call
25 aload_0
26 invokenonvirtual lang/bytecode/TestInvokeSpecialPPInSuperSelf/__method()I
28 ; Return resultant value
29 ireturn
30 .end method