[racket] Sharing data between tools

From: Robby Findler (robby at eecs.northwestern.edu)
Date: Fri Jul 16 16:53:00 EDT 2010

You'd use it to restrict access to any scope you'd like. In particular
you can export it from a module and then it will let you have access
to the method from places that require that module (and without
worrying about conflicts with other method names).

Robby

On Friday, July 16, 2010, Stephen De Gabrielle
<stephen.degabrielle at acm.org> wrote:
> Would I use define-local-member-name to keep the method defined in my
> mixin within the scope of the frame, but not exposed/available beyond
> the other tools using the frame?
>
> Does this mean that local methods are not available beyond the scope
> of the mixin itself?
>
>
> S.
>
> On Friday, July 16, 2010, Robby Findler <robby at eecs.northwestern.edu> wrote:
>> I think the tools docs is not the place to find the answer to this
>> one. You probably just want to make a method of the frame that returns
>> the menu-item% and then call it. See also define-local-member-name.
>>
>> Robby
>>
>> On Fri, Jul 16, 2010 at 11:34 AM, Stephen De Gabrielle
>> <stephen.degabrielle at acm.org> wrote:
>>> In the same sprit, I've created a new menu% in one tool, and I'd like
>>> to access it in another.
>>>
>>> I'd appreciate any suggestions or examples you could point me to, as
>>> I'm having a tough time nutting it out in the tools documentation.
>>>
>>> Cheers,
>>>
>>> Stephen
>>>
>>> On Thursday, July 15, 2010, Stephen De Gabrielle
>>> <stephen.degabrielle at acm.org> wrote:
>>>> Hi,
>>>>
>>>> I'm playing around with writing drracket tools/extensions and I'm
>>>> having a little trouble working out how to share data between tools.
>>>> (Especially via something like a SQLite db. )
>>>>
>>>> I'd also like to get Data out of check syntax and the definitions
>>>> selector, if anyone has any suggestions on how to approach it.
>>>>
>>>> Cheers,
>>>> Stephen
>>>>
>>>> --
>>>>
>>>> --
>>>> Stephen De Gabrielle
>>>> stephen.degabrielle at acm.org
>>>> Telephone +44 (0)20 85670911
>>>> Mobile        +44 (0)79 85189045
>>>> http://www.degabrielle.name/stephen
>>>>
>>>
>>> --
>>>
>>> --
>>> Stephen De Gabrielle
>>> stephen.degabrielle at acm.org
>>> Telephone +44 (0)20 85670911
>>> Mobile        +44 (0)79 85189045
>>> http://www.degabrielle.name/stephen
>>> _________________________________________________
>>>  For list-related administrative tasks:
>>>  http://lists.racket-lang.org/listinfo/users
>>
>
> --
>
> --
> Stephen De Gabrielle
> stephen.degabrielle at acm.org
> Telephone +44 (0)20 85670911
> Mobile        +44 (0)79 85189045
> http://www.degabrielle.name/stephen
>


Posted on the users mailing list.