mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Fix broken build (#961)
This commit is contained in:
@@ -231,7 +231,9 @@ static void ResolveNamesInExpression(Expression& expression,
|
||||
break;
|
||||
}
|
||||
case ExpressionKind::IntrinsicExpression:
|
||||
// FIXME implement this once #955 is merged
|
||||
ResolveNamesInExpression(cast<IntrinsicExpression>(expression).args(),
|
||||
enclosing_scope);
|
||||
break;
|
||||
case ExpressionKind::BoolTypeLiteral:
|
||||
case ExpressionKind::BoolLiteral:
|
||||
case ExpressionKind::IntTypeLiteral:
|
||||
@@ -241,6 +243,8 @@ static void ResolveNamesInExpression(Expression& expression,
|
||||
case ExpressionKind::StringTypeLiteral:
|
||||
case ExpressionKind::TypeTypeLiteral:
|
||||
break;
|
||||
case ExpressionKind::UnimplementedExpression:
|
||||
FATAL() << "Unimplemented";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user