Rust: Rename OperationImpl -> Impl.

This commit is contained in:
Geoffrey White
2025-05-12 16:45:41 +01:00
parent 48b95f3a4e
commit 9160036e41
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
* Provides classes for operations.
*/
import internal.OperationImpl
import internal.OperationImpl::Impl as OperationImpl
private import codeql.rust.elements.internal.ExprImpl::Impl as ExprImpl
final class Operation = OperationImpl::Operation;

View File

@@ -11,7 +11,7 @@ private import codeql.rust.elements.internal.ExprImpl::Impl as ExprImpl
* INTERNAL: This module contains the customizable definition of `Operation` and should not
* be referenced directly.
*/
module OperationImpl {
module Impl {
/**
* An operation, for example `&&`, `+=`, `!` or `*`.
*/