Skip to content
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

Using 'domain' in certain contexts is a syntax error #26041

Open
jabraham17 opened this issue Oct 4, 2024 · 1 comment
Open

Using 'domain' in certain contexts is a syntax error #26041

jabraham17 opened this issue Oct 4, 2024 · 1 comment

Comments

@jabraham17
Copy link
Member

I have found the following situations where the 'domain' keyword/typename is not allowed, where I think maybe it should be. All of the following situations result in syntax errors. This can be worked around in all cases by replacing domain with domain(?).

Using a domain in a where clause as a bare typename

proc foo(x) where x.type == domain { } // syntax error near '{'

proc bar(x)
  where isSubtype(x.type, domain) // syntax error near ')'
{ }

Using a domain in a type expression as a bare typename

type t = domain; // syntax error near ';'
proc foo(type t) do writeln(t:string);
foo(domain); // syntax error near ')'
record R {
  type T;
  proc init(type T) do this.T = T;
}
var x: R(domain); // syntax error near ';'
var y = new R(domain); // syntax error near ';'
type z = R(domain); // syntax error near ';'

Note that resolving the syntax error for this case by writing domain as domain(?) ends up being a resolution error anyways, but this issue is not about that, just the syntax issues.

Using a domain in a cast

operator :(x:range, type t: domain) do return {x};
var d = (1..10): domain;  // syntax error near ';'

Compare this with some other typenames. Replacing domain in any of these codes with, for example, range, locale, or imag compiles and works as expected.

type x = range; // valid code
var x = new R(locale); // valid code
foo(imag); // valid code

It is potentially up for debate if we allow this, especially as we move to a world where domain(?) is the preferred way to write a generic domain. So the right thing to do here may be to just make this a better syntax error. But I think the inconsistencies with other keywords/typenames is weird and potentially confusing.

@bradcray
Copy link
Member

bradcray commented Oct 4, 2024

I agree this shouldn't be a syntax error.

Readers should note that domain is not a fully-defaulted type like range, locale, and imag are, so I don't think (most of?) these cases should work without additional information (and from your last paragraph, it sounds like you realize this as well). For that reason, it'd be nice if it complained further down the line than the parser, like at the point of saying "I don't know how to cast an x to a generic type" or the "We increasingly require (?) for incomplete generic type specifications" family of warnings. But anything would arguably be an improvement over syntax error including a parser-based specialization of some sort.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants