Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. abstract class MyClass() {
  2. protected static foo: Array<number>;
  3.  
  4. protected static doWorkOnFoo(): void {
  5. let x: number = 0;
  6.  
  7. for (let f of | what goes here? this? self?|.foo) {
  8. x = x + foo;
  9. }
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement