Advertisement
Guest User

Untitled

a guest
Apr 29th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. // working
  3.  
  4. class Script {
  5.     process_incoming_request(request) {
  6.         Test.test();
  7.     }
  8. }
  9.  
  10. class Test {
  11.     static test() {return 'test'};
  12. }
  13.  
  14. // the result of the sh script
  15.  
  16. class Script {
  17.     process_incoming_request(request) {
  18.         Test.test();
  19.     }
  20. }
  21.  
  22. export class Test {
  23.     static test() {return 'test'};
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement