29 Mar 07:04
r11767 - trunk/fundev/sources/environment/dswank
From: <hannes <at> gwydiondylan.org>
Subject: r11767 - trunk/fundev/sources/environment/dswank
Newsgroups: gmane.comp.lang.dylan.gwydion.cvs
Date: 2008-03-29 06:05:05 GMT
Subject: r11767 - trunk/fundev/sources/environment/dswank
Newsgroups: gmane.comp.lang.dylan.gwydion.cvs
Date: 2008-03-29 06:05:05 GMT
Author: hannes Date: Sat Mar 29 07:05:04 2008 New Revision: 11767 Modified: trunk/fundev/sources/environment/dswank/dswank.dylan Log: Job: fd some cleanups *support for subclasses and superclass of a given symbol-name *support for symbol:library:module syntax when searching for environment objects Modified: trunk/fundev/sources/environment/dswank/dswank.dylan ============================================================================== --- trunk/fundev/sources/environment/dswank/dswank.dylan (original) +++ trunk/fundev/sources/environment/dswank/dswank.dylan Sat Mar 29 07:05:04 2008 @@ -146,10 +146,19 @@ environment-object-description(*project*, env, *module*) end; -define function get-environment-object (symbol-name) +define function get-environment-object (symbols) + let env = split(symbols, ":"); + let symbol-name = env[0]; let library = #f; let module = #f; let project = #f; +(Continue reading)
RSS Feed