[ nice-Bugs-866839 ] linking never completes
"SourceForge.net" <[email protected]>
| Newsgroups | gmane.comp.lang.nice.devel |
|---|---|
| Message-ID | <[email protected]> |
Bugs item #866839, was opened at 2003-12-28 15:09
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=112788&aid=866839&group_id=12788
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Isaac Gouy (igouy)
Assigned to: Nobody/Anonymous (nobody)
Summary: linking never completes
Initial Comment:
2 files in same folder graph_test
linking never completes
Nice compiler version 0.9.6 prerelease (build 2003.12.25,
01:41:55 UTC)
I:\pls\Nice\graph_test>nicec --sourcepath .. -a t.jar
graph_test
nice.lang: parsing
graph_test: parsing
graph_test: typechecking
graph_test: generating code
graph_test: linking
//UtilityInterfaces.nice
//--------------------
public interface ReadablePropertyMap<Key,Value> {
Value get(!Key k);
}
public interface ReadWritePropertyMap<Key,Value>
extends
ReadablePropertyMap<Key,Value> {
void set(!Key k, Value v);
}
//hash_property_map.nice
//-----------------------
public class hash_property_map<A,B> implements
ReadWritePropertyMap<A,B> {
private HashMap<A,B> data = new HashMap();
public void set(A a, B b) {
data.put(a,b);
}
public B get(A a) {
return notNull(data.get(a));
}
}
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=112788&aid=866839&group_id=12788
-------------------------------------------------------
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills. Sign up for IBM's
Free Linux Tutorials. Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click