9 questions
0
votes
1
answer
122
views
What is up with F-Script? Does swift replace it feature-wise, or only because of marketing?
I tried to find recent discussion of F-Script but couldn't. Is it dead because of Swift? SHOULD it be dead because of Swift or have the developers simply moved on?
3
votes
2
answers
930
views
Access a Swift REPL in Cocoa programs
I can attach LLDB to a program written in Swift and access the REPL, either from within Xcode or by running:
lldb -n ProcessName
(lldb) repl
1>
However, if I attach LLDB to a process which doesn'...
0
votes
1
answer
84
views
How do I access the source level definition of classes at runtime?
How do I access the Objective-C class interface defanition that is collected from headers at (pre or actual) compile time so I can provide introspection that is true to the defined public interface.
...
4
votes
2
answers
1k
views
Can F-Script be used to introspect iOS applications?
Can F-Script be used to inspect iOS applications that are running on the simulator or iPhone/iPad hardware? If so, how do I attach the object browser to my custom objects?
2
votes
1
answer
231
views
Is F-Script compatible with Smalltalk?
F-Script syntax look like Smalltalk. Is it compatible with any of Smalltalk standard?
2
votes
1
answer
155
views
How to link an application classes to F-Script
I would like to create a command line application that accepts a script F-Script that is executed, and which has access to some classes exposed by the application.
How can I do that?
PS: I am ...
0
votes
1
answer
294
views
How to round number to 2 decimals
on my way to help a fellow I wrote a simple F-Script without even knowing the existing of such language
http://forums.marketcircle.com/eve/forums/a/tpc/f/2931083693/m/883106236
but I tried to find ...
1
vote
2
answers
352
views
F-Script: Get object reference from object-browser to script-console
I am trying to figure out how to get an object I have found via the object-browser of F-Script to the script console. For example, I found an instance of NSString at adress 0x234243242 as the object ...
0
votes
1
answer
150
views
F-Script categories
Is there a way to implement the equivalent of the following in F-Script? I can't find any reference to it in the documentation.
@implementation SomeClass (SomeCategory)
- (void)doSomething {
// ....