blob: 966b943a87b2a8285ec7d78a961bb39c2225bb1e [file] [log] [blame]
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
interface ClassWithMethods {
untypedNoArgumentMethod();
untypedOneArgumentMethod(argument);
untypedTwoArgumentMethod(argument1, argument2);
int intNoArgumentMethod();
int intOneArgumentMethod(int argument);
int intTwoArgumentMethod(int argument1, int argument2);
Function functionField;
var untypedField;
int intField;
}