Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // working
- class Script {
- process_incoming_request(request) {
- Test.test();
- }
- }
- class Test {
- static test() {return 'test'};
- }
- // the result of the sh script
- class Script {
- process_incoming_request(request) {
- Test.test();
- }
- }
- export class Test {
- static test() {return 'test'};
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement