~ubuntu-branches/ubuntu/jaunty/swfdec0.8/jaunty

« back to all changes in this revision

Viewing changes to vivified/code/test/compiler/operator.as

  • Committer: Package Import Robot
  • Author(s): Didier Roche
  • Date: 2008-10-10 19:15:24 UTC
  • Revision ID: package-import@ubuntu.com-20081010191524-5z85qiky1d4bvgfa
Tags: upstream-0.8.0
ImportĀ upstreamĀ versionĀ 0.8.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
trace (a | a);
 
2
trace (a ^ a);
 
3
trace (a & a);
 
4
trace (a == a);
 
5
trace (a != a);
 
6
trace (a === a);
 
7
trace (a !== a);
 
8
trace (a < a);
 
9
trace (a > a);
 
10
trace (a <= a);
 
11
trace (a >= a);
 
12
trace (a instanceof a);
 
13
trace (a << a);
 
14
trace (a >> a);
 
15
trace (a >>> a);
 
16
trace (a + a);
 
17
trace (a - a);
 
18
trace (a * a);
 
19
trace (a / a);
 
20
trace (a % a);