File: class2.bsh

package info (click to toggle)
bsh 2.0b4-20
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 4,224 kB
  • sloc: java: 23,431; xml: 4,500; sh: 139; makefile: 24
file content (22 lines) | stat: -rw-r--r-- 559 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/java bsh.Interpreter

source("TestHarness.bsh");

// Verify that basic type operations work for scripted classes.
// As of BeanShell 1.3 all scripted classes are instances of bsh.This and have
// bsh.This type.  This is a workaround and will be corrected in bsh 2.0.

class Foo22 { }
class Bar22 extends Foo22 { }

Foo22 foo = new Foo22();
Bar22 bar = new Bar22();

assert( foo instanceof Foo22 );
assert( bar instanceof Bar22 );
assert( bar instanceof Foo22 );
// Add me for 2.0
assert( !(foo instanceof Bar22) ); // Workaround for 1.3.


complete();