angular-cn/modules/angular2/test/services/rectangle_mock.dart
2015-05-11 09:50:33 -07:00

6 lines
127 B
Dart

import 'dart:html';
Rectangle createRectangle(left, top, width, height) {
return new Rectangle(left, top, width, height);
}