Home | History | Annotate | Download | only in test_cgen_range
      1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved.
      2  * Use of this source code is governed by a BSD-style license that can be
      3  * found in the LICENSE file.
      4  */
      5 
      6 /* File Comment. */
      7 
      8 label Chrome {
      9   M13 = 0.0,
     10   M14 = 1.0,
     11   M15 = 2.0
     12 };
     13 
     14 describe {
     15   int32_t;
     16 };
     17 
     18 /* Bogus Interface Foo */
     19 [version=0.0]
     20 interface Foo {
     21   /**
     22    * Comment for function x
     23    */
     24   [version=0.0] int32_t Bar(int32_t x);
     25   /**
     26    * Comment for function x,y
     27    */
     28   [version=1.0] int32_t Bar(int32_t x, int32_t y);
     29   /**
     30    * Comment for function x,y,z
     31    */
     32   [version=2.0] int32_t Bar(int32_t x, int32_t y, int32_t z);
     33 };
     34 
     35