~ubuntu-branches/ubuntu/maverick/gnash/maverick

« back to all changes in this revision

Viewing changes to testsuite/misc-haxe.all/classes.all/net/URLVariables_as.hx

  • Committer: Bazaar Package Importer
  • Author(s): Sindhudweep Narayan Sarkar
  • Date: 2009-10-07 00:06:10 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20091007000610-mj9rwqe774gizn1j
Tags: 0.8.6-0ubuntu1
new upstream release 0.8.6 (LP: #435897)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// URLVariables_as.hx:  ActionScript 3 "URLVariables" class, for Gnash.
 
2
//
 
3
// Generated by gen-as3.sh on: 20090514 by "rob". Remove this
 
4
// after any hand editing loosing changes.
 
5
//
 
6
//   Copyright (C) 2009 Free Software Foundation, Inc.
 
7
//
 
8
// This program is free software; you can redistribute it and/or modify
 
9
// it under the terms of the GNU General Public License as published by
 
10
// the Free Software Foundation; either version 3 of the License, or
 
11
// (at your option) any later version.
 
12
//
 
13
// This program is distributed in the hope that it will be useful,
 
14
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
// GNU General Public License for more details.
 
17
//
 
18
// You should have received a copy of the GNU General Public License
 
19
// along with this program; if not, write to the Free Software
 
20
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
21
//
 
22
 
 
23
// This test case must be processed by CPP before compiling to include the
 
24
//  DejaGnu.hx header file for the testing framework support.
 
25
 
 
26
#if flash9
 
27
import flash.net.URLVariables;
 
28
import flash.display.MovieClip;
 
29
#else
 
30
import flash.MovieClip;
 
31
#end
 
32
import flash.Lib;
 
33
import Type;
 
34
import Std;
 
35
 
 
36
// import our testing API
 
37
import DejaGnu;
 
38
 
 
39
// Class must be named with the _as suffix, as that's the same name as the file.
 
40
class URLVariables_as {
 
41
    static function main() {
 
42
        
 
43
        #if flash9
 
44
        var x1:URLVariables = new URLVariables();
 
45
 
 
46
        // Make sure we actually get a valid class        
 
47
        if (Std.is(x1, URLVariables)) {
 
48
            DejaGnu.pass("URLVariables class exists");
 
49
        } else {
 
50
            DejaGnu.fail("URLVariables class doesn't exist");
 
51
        }
 
52
 
 
53
#else
 
54
    DejaGnu.note("URLVariables did not exist before SWF9");
 
55
#end
 
56
 
 
57
        // Call this after finishing all tests. It prints out the totals.
 
58
        DejaGnu.done();
 
59
    }
 
60
}
 
61
 
 
62
// local Variables:
 
63
// mode: C++
 
64
// indent-tabs-mode: t
 
65
// End:
 
66