Code Monkey home page Code Monkey logo

whalesong's Introduction

Whalesong

Important

Whalesong needs Racket 6.2. As is Whalesong doesn't work on version 6.3 or greater. See #48

Installation

raco pkg install -j 1 --force --deps search-auto --scope installation whalesong

Important: Use -j 1 to build Whalesong (this turns off parallel builds) This also means, that you can't install Whalesong from the DrRacket package manager.

This fork of Whalesong differs from dyoo/whalesong in the following ways:

  • Builds on version 6.2 of Racket (fixes the x undefined problem)
  • Adds for (require whalesong/lang/for)
  • Adds match (require whalesong/lang/match)
  • Adds on-release (as a complement to on-key) Contributed by Darren Cruse
  • Adds parameters (require whalesong/lang/parameters)
  • Extended whalesong/image and whalesong/images (more functions, bug fixes, now matches WeScheme) Contributed by Emmanuel Schanzer
  • Adds play-sound (assumes a browser with html5 audio support) Contributed by Emmanuel Schanzer and Darren Cruse
  • Bug fixes by Vishesh Yadav
  • The flag --as-standalone-xhtml is now --as-standalone-html and produces standalone html rather than xhtml.

Note: The implementation of parameters works fine, as long as you don't mix parameterize with non-local-exits and reentries (i.e. call/cc and friends)

/soegaard

whalesong's People

Contributors

bookshelfdave avatar darrencruse avatar dyoo avatar jpolitz avatar lexi-lambda avatar m4burns avatar rhcarvalho avatar samth avatar schanzer avatar soegaard avatar stamourv avatar stchang avatar vishesh avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

whalesong's Issues

Version Compatibility in Readme

Today I decided I want to try out Whalesong. First I tried installing as shown on the documentation page, but that only caused many errors and failed. Then I searched GitHub for issues regarding those errors, finally finding a link to this repository. Then I read the note in the Readme file telling me it depended on Racket 6.2:

Important

Whalesong needs Racket 6.2. As is Whalesong doesn't work on version 6.3 or greater. See #48

So I thought "Ah too bad, I'd have really liked to try it.", but then I read something contradictory in the same readme:

This fork of Whalesong differs from dyoo/whalesong in the following ways:

  • Builds on latest release of Racket (fixes the x undefined problem)

So which one is it? 6.2 or the latest version? Or does this only mean, that the library was created using Racket 6.8, but to use it you need to use 6.2?

I think this could be made a bit clearer in the readme.

I don't really know what differences in language and performance there are from Racket 6.2 to 6.8. Considering the timespan Racket is version 6.8 and the frequency of people working on it, I'd guess the differences in performance could be quite big, while I'd guess the language for the user was probably already quite stable. Depending on an older version "so many versions ago" makes me feel unsure about using Whalesong. Maybe I'll want to have other libraries for a project, but then I am stuck with Racket 6.2 and cannot use those other libraries. Such and similar issues come to mind, which is why it is really important to clarify what exactly the situation with the version dependency is.

Install errors with new macro expander

Whalesong does not install properly with the latest version of Racket (6.2.900.10), presumably due to changes in the bytecode

Here's some of the errors:

raco setup: --- summary of errors ---
raco setup: error: during making for <pkgs>/whalesong/whalesong (Whalesong)
raco setup:   plt/racket/share/pkgs/whalesong/whalesong/lang/private/qq-and-or.rkt:108:118: idl: unbound identifier in module (in phase 1, transformer environment)
raco setup:     in: idl
raco setup:     compiling: <pkgs>/whalesong/whalesong/lang/private/qq-and-or.rkt
raco setup: error: during making for <pkgs>/whalesong/whalesong/bf
raco setup:   plt/racket/share/pkgs/whalesong/whalesong/lang/private/qq-and-or.rkt:108:118: idl: unbound identifier in module (in phase 1, transformer environment)
raco setup:     in: idl
raco setup:     compiling: <pkgs>/whalesong/whalesong/lang/private/qq-and-or.rkt
raco setup: error: during making for <pkgs>/whalesong/whalesong/compiler
raco setup:   plt/racket/share/pkgs/whalesong/whalesong/parser/parse-bytecode-5.3.3.7.rkt:187:23: match: wrong number for fields for structure prefix: expected 4 but got 3
raco setup:     at: (num-lifts toplevels stxs)
raco setup:     in: (struct prefix (num-lifts toplevels stxs))
raco setup:     compiling: <pkgs>/whalesong/whalesong/parser/parse-bytecode-5.3.3.7.rkt

The #:reflection-name struct option causes a runtime error

Trying to declare a struct with the #:reflection-name option causes an error in the runtime:

(struct foo () #:reflection-name 'bar)
TypeError: Cannot read property 'prefix' of undefined
    at _400 [as p] (file:///tmp/dist/struct_1.js:104:262)
    at _448 (file:///tmp/dist/struct_1.js:215:12)
    at Machine._trampoline (file:///tmp/dist/struct.js:13640:17)
    at null.<anonymous> (file:///tmp/dist/struct.js:13691:38)
    at ExclusiveLock.acquire (file:///tmp/dist/struct.js:13216:23)
    at restart (file:///tmp/dist/struct.js:13686:35)
    at file:///tmp/dist/struct_1.js:231:50
    at Object.currentModuleLoader (file:///tmp/dist/struct.js:14296:24)
    at null.onPause (file:///tmp/dist/struct_1.js:228:26)
    at Machine._trampoline (file:///tmp/dist/struct.js:13719:23)

support racket/draw

Requested by Matthias.

This is a large task. Recording it here in case someone is interested in contributing and wants a research-level project.

Replace letrec and letrec-values in kernel.rkt

The latest Racket compiles the racket letrec and letrec-values into bytecode that checks for access to uninitialized values via check-for-unsafe-undefined. The easiest solution to fix Whalesong is to add these definitions of letrec and letrec-values to kernel.rkt.

(define-syntax (letrec stx)
(syntax-parse stx
[(_ ([id expr] ...) body ...)
(syntax/loc stx
(let ([id 'undefined] ...)
(set! id expr) ...
(let () body ...)))]))

(define-syntax (letrec-values stx)
(syntax-parse stx
[(_ ([(id ...) expr] ...) body ...)
(syntax/loc stx
(let ([id 'undefined] ... ...)
(set!-values (id ...) expr) ...
(let () body ...)))]))

place-image functions doesn't work

place-image and related function don't work. For example the image-library-example.rkt in examples fails.

Tracing the problem, I figured in kernel.js:makeSceneImage function the value of children before calling SceneImage constructor and inside SceneImage constructor are different. I'm compiling on Racket 6.1.1 on Linux and testing on latest Chrome and Firefox browser.

thanks.

support on-draw

on-draw is the same as to-draw.

on-draw is deprecated in Racket but it's not very clearly stated in the docs so lots of programs still use it. Whalesong should include it to be compatible with 2htdp/universe.

FYI raco setup errors reported

raco setup errors reported

raco setup: package declares no dependencies: "whalesong"
raco setup: --- summary of errors ---
raco setup: error: during making for /dyoo/whalesong.plt/1/21 (Whalesong)
raco setup: ...nomad/Library/Racket/planet/300/6.2.1/cache/dyoo/whalesong.plt/1/21/parser/parse-bytecode-5.3.rkt:372:20: match: wrong number for fields for structure mod: expected 16 but got 15
raco setup: at: (name srcname self-modidx prefix provides requires body syntax-body unexported max-let-depth dummy lang-info internal-context pre-submodules post-submodules)
raco setup: in: (struct mod (name srcname self-modidx prefix provides requires body syntax-body unexported max-let-depth dummy lang-info internal-context pre-submodules post-submodules))
raco setup: compiling: /dyoo/whalesong.plt/1/21/parser/parse-bytecode-5.3.rkt
raco setup: error: during making for /dyoo/whalesong.plt/1/21/compiler
raco setup: ...nomad/Library/Racket/planet/300/6.2.1/cache/dyoo/whalesong.plt/1/21/parser/parse-bytecode-5.3.rkt:372:20: match: wrong number for fields for structure mod: expected 16 but got 15
raco setup: at: (name srcname self-modidx prefix provides requires body syntax-body unexported max-let-depth dummy lang-info internal-context pre-submodules post-submodules)
raco setup: in: (struct mod (name srcname self-modidx prefix provides requires body syntax-body unexported max-let-depth dummy lang-info internal-context pre-submodules post-submodules))
raco setup: compiling: /dyoo/whalesong.plt/1/21/parser/parse-bytecode-5.3.rkt
raco setup: error: during making for /dyoo/whalesong.plt/1/21/js-assembler
raco setup: ...nomad/Library/Racket/planet/300/6.2.1/cache/dyoo/whalesong.plt/1/21/parser/parse-bytecode-5.3.rkt:372:20: match: wrong number for fields for structure mod: expected 16 but got 15
raco setup: at: (name srcname self-modidx prefix provides requires body syntax-body unexported max-let-depth dummy lang-info internal-context pre-submodules post-submodules)
raco setup: in: (struct mod (name srcname self-modidx prefix provides requires body syntax-body unexported max-let-depth dummy lang-info internal-context pre-submodules post-submodules))
raco setup: compiling: /dyoo/whalesong.plt/1/21/parser/parse-bytecode-5.3.rkt
raco setup: error: during making for /dyoo/whalesong.plt/1/21/make
raco setup: ...nomad/Library/Racket/planet/300/6.2.1/cache/dyoo/whalesong.plt/1/21/parser/parse-bytecode-5.3.rkt:372:20: match: wrong number for fields for structure mod: expected 16 but got 15
raco setup: at: (name srcname self-modidx prefix provides requires body syntax-body unexported max-let-depth dummy lang-info internal-context pre-submodules post-submodules)
raco setup: in: (struct mod (name srcname self-modidx prefix provides requires body syntax-body unexported max-let-depth dummy lang-info internal-context pre-submodules post-submodules))
raco setup: compiling: /dyoo/whalesong.plt/1/21/parser/parse-bytecode-5.3.rkt
raco setup: error: during making for /dyoo/whalesong.plt/1/21/parser
raco setup: ...nomad/Library/Racket/planet/300/6.2.1/cache/dyoo/whalesong.plt/1/21/parser/parse-bytecode-5.3.rkt:372:20: match: wrong number for fields for structure mod: expected 16 but got 15
raco setup: at: (name srcname self-modidx prefix provides requires body syntax-body unexported max-let-depth dummy lang-info internal-context pre-submodules post-submodules)
raco setup: in: (struct mod (name srcname self-modidx prefix provides requires body syntax-body unexported max-let-depth dummy lang-info internal-context pre-submodules post-submodules))
raco setup: compiling: /dyoo/whalesong.plt/1/21/parser/parse-bytecode-5.3.rkt

empty-scene is a stub

lang whalesong

(require whalesong/world)
(require whalesong/image)
(empty-scene)

Produces the error:
empty-scene: stub definition

Should I use something else?

Inconsistency between README and ticket about version support

In this ticket, @soegaard said that "... we are stuck with Racket 6.2." And the ticket itself is named "Compiling failed in Racket 6.3". However, the README file of this project says: "Whalesong needs Racket 5.2. As is Whalesong doesn't work on version 5.3 or greater." It appears that there is an inconsistency here in the specification of which versions are not supported. I'm not sure whether this was a simple mistake or if I'm missing something here.

Fix define-resource in compile-time.rkt

In "compile-time.rkt" the body of define-resource is changed to

         ;; Run time code
         #;(define name (specialize! (resource normal-path munged-path content)))
         (define name (resource normal-path munged-path content))

This fixed a runtime error that occurs when define-resource is used.
It seems that the problem is related to checkargument and structures.

Here is an example of the error from http://lists.racket-lang.org/users/archive/2013-December/060683.html

Error: specialize!: expected resource as argument 1 but received
(resource #path:C:working-copieswhalesongtimer.png "timer.png"

What's interesting is that checkargument says it expects a resource structure,
even though it got one.

Compiling whalesong

Hello, I'm having an issue with compiling Whalesong. Let me start by saying that I tried to install the dyoo/whalesong version from the planet repository but to no avail. I actually end up getting the same error either way.

My problem right now is that when I run sudo make, I get this output:

raco planet link dyoo whalesong.plt 1 19 .
racket make-launcher.rkt
copy-file: cannot open source file
source path: /home/alberto/racket/collects/launcher/sh
destination path: /home/alberto/whalesong-master/whalesong/whalesong
system error: No such file or directory; errno=2
make: *** [launcher] Error 1

Neither the source nor destination exists. In fact, I'm not sure why the destination is as such, since that's too many levels deep (the make file is in /home/alberto/whalesong-master/whalesong).

I appreciate any help you can provide.

test suite test-assemble.rkt failing

Running (E-many (list (make-PushEnvironment 2 #f)) "M.e.length") ...
#(struct:exn:fail:contract:arity assemble/write-invoke: arity mismatch;
 the expected number of arguments does not match the given number
  expected: 3
  given: 2
  arguments...:
   (list (PushEnvironment 2 #f))
   #<output-port:string> #<continuation-mark-set>)
. test: Runtime error: got #(struct:error-happened "assemble/write-invoke: arity mismatch;\n the expected number of arguments does not match the given number\n  expected: 3\n  given: 2\n  arguments...:\n   (list (PushEnvironment 2 #f))\n   #<output-port:string>" #<continuation-mark-set> 1) in: (test (E-many (list (make-PushEnvironment 2 #f)) "M.e.length") "2")

Compiling failed in Racket 6.3

  1. whalesong/lang/private/qq-and-or.rkt:108:118: idl: unbound identifier in module (in phase 1, transformer environment)
  2. whalesong/parser/parse-bytecode-5.3.3.7.rkt:100:50: match: wrong number for fields for structure compilation-top: expected 4 but got 3

(equal? 13 13.0)

lang whalesong

(equal? 13 13)
(equal? 13. 13)
(equal? 13 13.)
(equal? 13. 13.)

gives

true
false
false
true

2048 doesn't work in Firefox

I tried this program: http://bigbang.ccs.neu.edu/get/GowoK

Instead of the game, I got this error output:

makePrimitiveProcedure/impl@http://bigbang.ccs.neu.edu/get-full/GowoK:8643:19
_16762@http://bigbang.ccs.neu.edu/get-full/GowoK:20322:9
_18254@http://bigbang.ccs.neu.edu/get-full/GowoK:34367:8
_18335@http://bigbang.ccs.neu.edu/get-full/GowoK:34336:9
_18254@http://bigbang.ccs.neu.edu/get-full/GowoK:34362:24
_18255@http://bigbang.ccs.neu.edu/get-full/GowoK:34318:9
_16739@http://bigbang.ccs.neu.edu/get-full/GowoK:20397:9
_19577@http://bigbang.ccs.neu.edu/get-full/GowoK:38584:8
makePrimitiveProcedure/impl@http://bigbang.ccs.neu.edu/get-full/GowoK:8645:20
_19570@http://bigbang.ccs.neu.edu/get-full/GowoK:38597:9
makePrimitiveProcedure/impl@http://bigbang.ccs.neu.edu/get-full/GowoK:8645:20
_19289@http://bigbang.ccs.neu.edu/get-full/GowoK:41308:9
_19292@http://bigbang.ccs.neu.edu/get-full/GowoK:42369:9
_19291@http://bigbang.ccs.neu.edu/get-full/GowoK:41065:8
_15425@http://bigbang.ccs.neu.edu/get-full/GowoK:26132:9
_16756@http://bigbang.ccs.neu.edu/get-full/GowoK:20350:9
_18254@http://bigbang.ccs.neu.edu/get-full/GowoK:34367:8
_18335@http://bigbang.ccs.neu.edu/get-full/GowoK:34336:9
_18254@http://bigbang.ccs.neu.edu/get-full/GowoK:34362:24
_18255@http://bigbang.ccs.neu.edu/get-full/GowoK:34318:9
_16739@http://bigbang.ccs.neu.edu/get-full/GowoK:20397:9
_19577@http://bigbang.ccs.neu.edu/get-full/GowoK:38584:8
makePrimitiveProcedure/impl@http://bigbang.ccs.neu.edu/get-full/GowoK:8645:20
_19570@http://bigbang.ccs.neu.edu/get-full/GowoK:38597:9
makePrimitiveProcedure/impl@http://bigbang.ccs.neu.edu/get-full/GowoK:8645:20
_19289@http://bigbang.ccs.neu.edu/get-full/GowoK:41308:9
_19292@http://bigbang.ccs.neu.edu/get-full/GowoK:42369:9
_19291@http://bigbang.ccs.neu.edu/get-full/GowoK:41065:8
_15425@http://bigbang.ccs.neu.edu/get-full/GowoK:26132:9
_16758@http://bigbang.ccs.neu.edu/get-full/GowoK:20329:9
_15427@http://bigbang.ccs.neu.edu/get-full/GowoK:26072:8
_15428@http://bigbang.ccs.neu.edu/get-full/GowoK:26012:9
_16822@http://bigbang.ccs.neu.edu/get-full/GowoK:20107:9
_16729@http://bigbang.ccs.neu.edu/get-full/GowoK:20443:8
_16731@http://bigbang.ccs.neu.edu/get-full/GowoK:20435:8
_15423@http://bigbang.ccs.neu.edu/get-full/GowoK:26190:8
_16816@http://bigbang.ccs.neu.edu/get-full/GowoK:20178:9
_15431@http://bigbang.ccs.neu.edu/get-full/GowoK:25928:8
_16840@http://bigbang.ccs.neu.edu/get-full/GowoK:25854:9
_16842@http://bigbang.ccs.neu.edu/get-full/GowoK:25871:8
_16850@http://bigbang.ccs.neu.edu/get-full/GowoK:20049:8
_16848@http://bigbang.ccs.neu.edu/get-full/GowoK:20062:8
_16844@http://bigbang.ccs.neu.edu/get-full/GowoK:20075:8
_16837@http://bigbang.ccs.neu.edu/get-full/GowoK:20091:8
_15432@http://bigbang.ccs.neu.edu/get-full/GowoK:25902:8
_16884@http://bigbang.ccs.neu.edu/get-full/GowoK:19975:9
makePrimitiveProcedure/impl@http://bigbang.ccs.neu.edu/get-full/GowoK:8645:20
_16868@http://bigbang.ccs.neu.edu/get-full/GowoK:25764:9
_16870@http://bigbang.ccs.neu.edu/get-full/GowoK:25781:8
_16878@http://bigbang.ccs.neu.edu/get-full/GowoK:19981:8
_16876@http://bigbang.ccs.neu.edu/get-full/GowoK:19994:8
_16872@http://bigbang.ccs.neu.edu/get-full/GowoK:20007:8
_16862@http://bigbang.ccs.neu.edu/get-full/GowoK:25812:8
_16865@http://bigbang.ccs.neu.edu/get-full/GowoK:20010:24
_15433@http://bigbang.ccs.neu.edu/get-full/GowoK:25833:8
_17979@http://bigbang.ccs.neu.edu/get-full/GowoK:16627:9
_18279@http://bigbang.ccs.neu.edu/get-full/GowoK:33494:8
_18449@http://bigbang.ccs.neu.edu/get-full/GowoK:33482:9
_18279@http://bigbang.ccs.neu.edu/get-full/GowoK:33490:24
_18449@http://bigbang.ccs.neu.edu/get-full/GowoK:33482:9
_18279@http://bigbang.ccs.neu.edu/get-full/GowoK:33490:24
_18449@http://bigbang.ccs.neu.edu/get-full/GowoK:33482:9
_18279@http://bigbang.ccs.neu.edu/get-full/GowoK:33490:24
_18449@http://bigbang.ccs.neu.edu/get-full/GowoK:33482:9
_18279@http://bigbang.ccs.neu.edu/get-full/GowoK:33490:24
_18449@http://bigbang.ccs.neu.edu/get-full/GowoK:33482:9
_18279@http://bigbang.ccs.neu.edu/get-full/GowoK:33490:24
_18449@http://bigbang.ccs.neu.edu/get-full/GowoK:33482:9
_18279@http://bigbang.ccs.neu.edu/get-full/GowoK:33490:24
_18449@http://bigbang.ccs.neu.edu/get-full/GowoK:33482:9
_18279@http://bigbang.ccs.neu.edu/get-full/GowoK:33490:24
_18449@http://bigbang.ccs.neu.edu/get-full/GowoK:33482:9
_18279@http://bigbang.ccs.neu.edu/get-full/GowoK:33490:24
_18449@http://bigbang.ccs.neu.edu/get-full/GowoK:33482:9
_18279@http://bigbang.ccs.neu.edu/get-full/GowoK:33490:24
_18449@http://bigbang.ccs.neu.edu/get-full/GowoK:33482:9
_18279@http://bigbang.ccs.neu.edu/get-full/GowoK:33490:24
_18449@http://bigbang.ccs.neu.edu/get-full/GowoK:33482:9
_18279@http://bigbang.ccs.neu.edu/get-full/GowoK:33490:24
_18449@http://bigbang.ccs.neu.edu/get-full/GowoK:33482:9
_18279@http://bigbang.ccs.neu.edu/get-full/GowoK:33490:24
_18449@http://bigbang.ccs.neu.edu/get-full/GowoK:33482:9
_18279@http://bigbang.ccs.neu.edu/get-full/GowoK:33490:24
_18449@http://bigbang.ccs.neu.edu/get-full/GowoK:33482:9
_18279@http://bigbang.ccs.neu.edu/get-full/GowoK:33490:24
_18449@http://bigbang.ccs.neu.edu/get-full/GowoK:33482:9
_18279@http://bigbang.ccs.neu.edu/get-full/GowoK:33490:24
_18449@http://bigbang.ccs.neu.edu/get-full/GowoK:33482:9
_18279@http://bigbang.ccs.neu.edu/get-full/GowoK:33490:24
_18454@http://bigbang.ccs.neu.edu/get-full/GowoK:33447:9
_18280@http://bigbang.ccs.neu.edu/get-full/GowoK:33467:8
_17981@http://bigbang.ccs.neu.edu/get-full/GowoK:16620:9
_17973@http://bigbang.ccs.neu.edu/get-full/GowoK:16675:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17971@http://bigbang.ccs.neu.edu/get-full/GowoK:16684:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17969@http://bigbang.ccs.neu.edu/get-full/GowoK:16693:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17967@http://bigbang.ccs.neu.edu/get-full/GowoK:16702:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17965@http://bigbang.ccs.neu.edu/get-full/GowoK:16711:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17963@http://bigbang.ccs.neu.edu/get-full/GowoK:16720:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17961@http://bigbang.ccs.neu.edu/get-full/GowoK:16729:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17959@http://bigbang.ccs.neu.edu/get-full/GowoK:16738:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17957@http://bigbang.ccs.neu.edu/get-full/GowoK:16747:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17955@http://bigbang.ccs.neu.edu/get-full/GowoK:16756:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17953@http://bigbang.ccs.neu.edu/get-full/GowoK:16765:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17951@http://bigbang.ccs.neu.edu/get-full/GowoK:16774:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17949@http://bigbang.ccs.neu.edu/get-full/GowoK:16783:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17939@http://bigbang.ccs.neu.edu/get-full/GowoK:16834:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17941@http://bigbang.ccs.neu.edu/get-full/GowoK:16825:8
_17945@http://bigbang.ccs.neu.edu/get-full/GowoK:16800:8
_17947@http://bigbang.ccs.neu.edu/get-full/GowoK:16792:8
_17943@http://bigbang.ccs.neu.edu/get-full/GowoK:16818:8
_17937@http://bigbang.ccs.neu.edu/get-full/GowoK:16852:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17935@http://bigbang.ccs.neu.edu/get-full/GowoK:16861:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17933@http://bigbang.ccs.neu.edu/get-full/GowoK:16870:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17931@http://bigbang.ccs.neu.edu/get-full/GowoK:16879:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17929@http://bigbang.ccs.neu.edu/get-full/GowoK:16888:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17927@http://bigbang.ccs.neu.edu/get-full/GowoK:16901:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17925@http://bigbang.ccs.neu.edu/get-full/GowoK:16910:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17923@http://bigbang.ccs.neu.edu/get-full/GowoK:16919:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17921@http://bigbang.ccs.neu.edu/get-full/GowoK:16932:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17919@http://bigbang.ccs.neu.edu/get-full/GowoK:16941:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17917@http://bigbang.ccs.neu.edu/get-full/GowoK:16950:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17915@http://bigbang.ccs.neu.edu/get-full/GowoK:16959:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17913@http://bigbang.ccs.neu.edu/get-full/GowoK:16968:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17911@http://bigbang.ccs.neu.edu/get-full/GowoK:16977:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17909@http://bigbang.ccs.neu.edu/get-full/GowoK:16990:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17907@http://bigbang.ccs.neu.edu/get-full/GowoK:16999:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17905@http://bigbang.ccs.neu.edu/get-full/GowoK:17008:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17903@http://bigbang.ccs.neu.edu/get-full/GowoK:17017:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17901@http://bigbang.ccs.neu.edu/get-full/GowoK:17026:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17899@http://bigbang.ccs.neu.edu/get-full/GowoK:17035:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17897@http://bigbang.ccs.neu.edu/get-full/GowoK:17044:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17895@http://bigbang.ccs.neu.edu/get-full/GowoK:17053:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17893@http://bigbang.ccs.neu.edu/get-full/GowoK:17062:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17891@http://bigbang.ccs.neu.edu/get-full/GowoK:17071:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17889@http://bigbang.ccs.neu.edu/get-full/GowoK:17080:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17887@http://bigbang.ccs.neu.edu/get-full/GowoK:17089:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17885@http://bigbang.ccs.neu.edu/get-full/GowoK:17098:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17883@http://bigbang.ccs.neu.edu/get-full/GowoK:17107:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17881@http://bigbang.ccs.neu.edu/get-full/GowoK:17116:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17879@http://bigbang.ccs.neu.edu/get-full/GowoK:17125:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17877@http://bigbang.ccs.neu.edu/get-full/GowoK:17134:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17875@http://bigbang.ccs.neu.edu/get-full/GowoK:17143:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17873@http://bigbang.ccs.neu.edu/get-full/GowoK:17152:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17871@http://bigbang.ccs.neu.edu/get-full/GowoK:17161:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17869@http://bigbang.ccs.neu.edu/get-full/GowoK:17170:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17867@http://bigbang.ccs.neu.edu/get-full/GowoK:17183:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17865@http://bigbang.ccs.neu.edu/get-full/GowoK:17192:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17863@http://bigbang.ccs.neu.edu/get-full/GowoK:17201:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17861@http://bigbang.ccs.neu.edu/get-full/GowoK:17210:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17859@http://bigbang.ccs.neu.edu/get-full/GowoK:17219:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17857@http://bigbang.ccs.neu.edu/get-full/GowoK:17228:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17855@http://bigbang.ccs.neu.edu/get-full/GowoK:17237:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17853@http://bigbang.ccs.neu.edu/get-full/GowoK:17246:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17851@http://bigbang.ccs.neu.edu/get-full/GowoK:17255:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17849@http://bigbang.ccs.neu.edu/get-full/GowoK:17264:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17847@http://bigbang.ccs.neu.edu/get-full/GowoK:17279:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17845@http://bigbang.ccs.neu.edu/get-full/GowoK:17288:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17843@http://bigbang.ccs.neu.edu/get-full/GowoK:17297:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17841@http://bigbang.ccs.neu.edu/get-full/GowoK:17306:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17839@http://bigbang.ccs.neu.edu/get-full/GowoK:17315:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17837@http://bigbang.ccs.neu.edu/get-full/GowoK:17324:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17835@http://bigbang.ccs.neu.edu/get-full/GowoK:17333:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17833@http://bigbang.ccs.neu.edu/get-full/GowoK:17342:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17827@http://bigbang.ccs.neu.edu/get-full/GowoK:17358:8
justReturn@http://bigbang.ccs.neu.edu/get-full/GowoK:13512:16
_17829@http://bigbang.ccs.neu.edu/get-full/GowoK:17349:8
_18959@http://bigbang.ccs.neu.edu/get-full/GowoK:36574:8
_18961@http://bigbang.ccs.neu.edu/get-full/GowoK:35834:8
_18959@http://bigbang.ccs.neu.edu/get-full/GowoK:36574:8
_18961@http://bigbang.ccs.neu.edu/get-full/GowoK:35834:8
_18959@http://bigbang.ccs.neu.edu/get-full/GowoK:36574:8
_18961@http://bigbang.ccs.neu.edu/get-full/GowoK:35834:8
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13649:17
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_20371/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:43787:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_20371/<@http://bigbang.ccs.neu.edu/get-full/GowoK:43784:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_20368/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:43809:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_20368/<@http://bigbang.ccs.neu.edu/get-full/GowoK:43806:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_20365/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:43831:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_20365/<@http://bigbang.ccs.neu.edu/get-full/GowoK:43828:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_20582/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:45178:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_20582/<@http://bigbang.ccs.neu.edu/get-full/GowoK:45175:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_20579/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:45105:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_20579/<@http://bigbang.ccs.neu.edu/get-full/GowoK:45102:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_20606/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:45323:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_20606/<@http://bigbang.ccs.neu.edu/get-full/GowoK:45320:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_20603/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:45345:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_20603/<@http://bigbang.ccs.neu.edu/get-full/GowoK:45342:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_20600/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:45369:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_20600/<@http://bigbang.ccs.neu.edu/get-full/GowoK:45366:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_20591/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:45221:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_20591/<@http://bigbang.ccs.neu.edu/get-full/GowoK:45218:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_20576/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:45129:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_20576/<@http://bigbang.ccs.neu.edu/get-full/GowoK:45126:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_20526/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:44760:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_20526/<@http://bigbang.ccs.neu.edu/get-full/GowoK:44757:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_20523/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:44782:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_20523/<@http://bigbang.ccs.neu.edu/get-full/GowoK:44779:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_20362/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:43853:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_20362/<@http://bigbang.ccs.neu.edu/get-full/GowoK:43850:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_18072/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:30311:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_18072/<@http://bigbang.ccs.neu.edu/get-full/GowoK:30308:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_17782/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:23925:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_17782/<@http://bigbang.ccs.neu.edu/get-full/GowoK:23922:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
afterName20085/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:66657:49
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
afterName20085/<@http://bigbang.ccs.neu.edu/get-full/GowoK:66654:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
@http://bigbang.ccs.neu.edu/get-full/GowoK:66677:49
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
@http://bigbang.ccs.neu.edu/get-full/GowoK:66674:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_22773/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:64693:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_22773/<@http://bigbang.ccs.neu.edu/get-full/GowoK:64690:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_22761/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:64576:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_22761/<@http://bigbang.ccs.neu.edu/get-full/GowoK:64573:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_17779/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:23947:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_17779/<@http://bigbang.ccs.neu.edu/get-full/GowoK:23944:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_21046/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:47000:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_21046/<@http://bigbang.ccs.neu.edu/get-full/GowoK:46997:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_20742/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:46300:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_20742/<@http://bigbang.ccs.neu.edu/get-full/GowoK:46297:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
@http://bigbang.ccs.neu.edu/get-full/GowoK:64516:49
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
@http://bigbang.ccs.neu.edu/get-full/GowoK:64513:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_20736/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:46344:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_20736/<@http://bigbang.ccs.neu.edu/get-full/GowoK:46341:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_20724/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:46200:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_20724/<@http://bigbang.ccs.neu.edu/get-full/GowoK:46197:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_17776/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:23969:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_17776/<@http://bigbang.ccs.neu.edu/get-full/GowoK:23966:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_18111/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:30384:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_18111/<@http://bigbang.ccs.neu.edu/get-full/GowoK:30381:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_18108/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:30406:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_18108/<@http://bigbang.ccs.neu.edu/get-full/GowoK:30403:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_18105/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:30428:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_18105/<@http://bigbang.ccs.neu.edu/get-full/GowoK:30425:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_18099/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:30472:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_18099/<@http://bigbang.ccs.neu.edu/get-full/GowoK:30469:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_18096/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:30494:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_18096/<@http://bigbang.ccs.neu.edu/get-full/GowoK:30491:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_20269/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:42965:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_20269/<@http://bigbang.ccs.neu.edu/get-full/GowoK:42962:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_18248/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:31498:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_18248/<@http://bigbang.ccs.neu.edu/get-full/GowoK:31495:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_18245/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:31520:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_18245/<@http://bigbang.ccs.neu.edu/get-full/GowoK:31517:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_18242/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:31337:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_18242/<@http://bigbang.ccs.neu.edu/get-full/GowoK:31334:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_18239/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:31359:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_18239/<@http://bigbang.ccs.neu.edu/get-full/GowoK:31356:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_18236/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:31381:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_18236/<@http://bigbang.ccs.neu.edu/get-full/GowoK:31378:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_18233/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:31403:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_18233/<@http://bigbang.ccs.neu.edu/get-full/GowoK:31400:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_18230/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:31425:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_18230/<@http://bigbang.ccs.neu.edu/get-full/GowoK:31422:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_20106/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:39027:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_20106/<@http://bigbang.ccs.neu.edu/get-full/GowoK:39024:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_18227/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:31449:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_18227/<@http://bigbang.ccs.neu.edu/get-full/GowoK:31446:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_18093/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:30518:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_18093/<@http://bigbang.ccs.neu.edu/get-full/GowoK:30515:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
Machine.prototype._trampoline/restart/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13700:33
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
Machine.prototype._trampoline/restart@http://bigbang.ccs.neu.edu/get-full/GowoK:13695:1
_17773/</<@http://bigbang.ccs.neu.edu/get-full/GowoK:23993:50
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
_17773/<@http://bigbang.ccs.neu.edu/get-full/GowoK:23990:1
Machine.prototype._trampoline@http://bigbang.ccs.neu.edu/get-full/GowoK:13728:21
ModuleRecord.prototype._invoke/<@http://bigbang.ccs.neu.edu/get-full/GowoK:8812:25
ExclusiveLock.prototype.acquire@http://bigbang.ccs.neu.edu/get-full/GowoK:13225:13
ModuleRecord.prototype._invoke@http://bigbang.ccs.neu.edu/get-full/GowoK:8804:1
ModuleRecord.prototype.invoke@http://bigbang.ccs.neu.edu/get-full/GowoK:8769:9
Machine.prototype.loadAndInvoke/<@http://bigbang.ccs.neu.edu/get-full/GowoK:13368:1
defaultModuleLoader@http://bigbang.ccs.neu.edu/get-full/GowoK:14289:20
Machine.prototype.loadAndInvoke@http://bigbang.ccs.neu.edu/get-full/GowoK:13363:1
invokeMains/</loop@http://bigbang.ccs.neu.edu/get-full/GowoK:13915:21

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.