Last active
December 19, 2015 02:38
-
-
Save jaytaph/5884166 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/usr/share/saffire/modules | |
/usr/share/saffire/modules/sfl | |
/usr/share/saffire/modules/sfl/io.sf | |
/usr/share/saffire/modules/sfl/saffire.sf | |
/usr/share/saffire/modules/Framework.sf | |
/usr/share/saffire/modules/Framework | |
/usr/share/saffire/modules/Framework/View.sf | |
/usr/share/saffire/modules/Framework/Http.sf | |
/usr/share/saffire/modules/Framework/Http/Request.sf | |
/usr/share/saffire/modules/Framework/Http/Response.sf | |
File: /test.sf | |
Context: :: | |
import io; // imports from /usr/share/saffire/modules/sfl/io.sf | |
import Framework; //imports from /usr/share/saffire/modules/Framework.sf | |
import Framework::View; //imports from /usr/share/saffire/modules/Framework/View.sf | |
import Framework::Http::Request; //imports from /usr/share/saffire/modules/Framework/Http/Request.sf | |
File: /Framework/Http.sf | |
Context: ::Framework | |
import Http::Request; // imports from /usr/share/saffire/modules/Framework/Http/Request.sf | |
import Http::Response; // imports from /usr/share/saffire/modules/Framework/Http/Response.sf | |
import * From Http; // imports all classes from /usr/share/saffire/modules/Framework/Http/*.sf (???) | |
import io; // imports from /usr/share/saffire/modules/Framework/io.sf (actually imports: Framework::io) | |
import ::io; // imports from /usr/share/saffire/modules/Framework/io.sf (actually imports: ::io) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment