1// Extracted from http://dev.w3.org/2006/webapi/WebIDL/ on 2011-05-06
2interface NumberQuadrupler {
3  // This operation simply returns four times the given number x.
4  legacycaller float compute(float x);
5};