| 7 | */ |
| 8 | /// <reference path="Core.d.ts" /> |
| 9 | interface ISpaceAllocator { |
| 10 | add(c:IComment):void; |
| 11 | remove(c:IComment):void; |
| 12 | setBounds(w:number, h:number):void; |
| 13 | } |
| 14 | |
| 15 | class CommentSpaceAllocator implements ISpaceAllocator { |
| 16 | public _width:number; |
no outgoing calls
no test coverage detected