-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does this have support for inline namespaces? #6
Comments
No, that's one of the misimplemented part of this project. TypeResolver only tries to find the typename with the first token. (in this case, it will be SlowSharp/Slowsharp/Runner/TypeCache.cs Lines 33 to 97 in 73e7422
|
Oh, forget about the answer abote. I think the problem is here: SlowSharp/Slowsharp/Runner/Runner.Expression.cs Lines 350 to 474 in 73e7422
which is really complicated. (so many cases to resolve call syntax) |
then i use namespaces for now :) |
for example this works fine
using UnityEngine;
Debug.Log("test");
but when i type
UnityEngine.Debug.Log("test");
it says UnityEngine not found
The text was updated successfully, but these errors were encountered: