Sign in
cobalt
/
cobalt.git
/
56d7c4e1a836a7ef6e2823bffb8d1567758b82eb
/
.
/
third_party
/
web_platform_tests
/
WebIDL
/
valid
/
idl
/
enum.widl
blob: 851fca2e6f61313b4ce285e69d773f02c3264d89 [
file
]
enum
MealType
{
"rice"
,
"noodles"
,
"other"
};
interface
Meal
{
attribute
MealType
type
;
attribute
float
size
;
// in grams
void
initialize
(
MealType
type
,
float
size
);
};