Skip to content

Instantly share code, notes, and snippets.

@Drarok
Forked from jaytaph/gist:5884166
Created June 28, 2013 13:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Drarok/5884521 to your computer and use it in GitHub Desktop.
Save Drarok/5884521 to your computer and use it in GitHub Desktop.
/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 Request; // imports from /usr/share/saffire/modules/Framework/Http/Request.sf
import 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