Sign in
◑
Theme
cobalt
/
cobalt
/
6c50c1c49c8a70d13dcb47674d70da002e02256c
/
.
/
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
);
};