summaryrefslogtreecommitdiffstats
path: root/tools/json_schema_compiler/dart_test/enums.idl
blob: 18ea85a882c4d6514041ec0a3aaf35ca5aa67aaf (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

namespace enums {
  // A basic enumeration.
  enum Enum1 { a, b };

  // Another basic enumeration.
  enum Enum2 { ab, bc, de, ef, fg, hi };
};