Files
regorus/src/languages/azure_policy/compiler/conditions_wildcard.rs
Anand Krishnamoorthi f727096a1d feat(azure-policy): add compiler skeleton with core types and stubs (#674)
Add the compiler module structure with:
- core.rs: Compiler struct, CountBinding, new(), compile() pipeline,
  register allocation, span/emit helpers
- mod.rs: module declarations, public entry points
  (compile_policy_rule, compile_policy_definition, etc.)
- utils.rs: pure helper functions (path splitting, JSON conversion)
- Stub files for conditions, expressions, fields, template dispatch,
  count, effects, and metadata — real implementations follow in
  subsequent commits.
2026-04-20 15:29:26 -05:00

7 lines
192 B
Rust

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
//! Implicit allOf for unbound `[*]` wildcard fields.
//!
//! Stub — real implementation added in a later commit.