• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

davidcole1340 / ext-php-rs / 15923979178

27 Jun 2025 10:19AM UTC coverage: 20.545% (-0.08%) from 20.629%
15923979178

Pull #463

github

web-flow
Merge 8ccf8450b into 444dec922
Pull Request #463: feat(cargo-php): --features, --all-features, --no-default-features

0 of 18 new or added lines in 1 file covered. (0.0%)

761 of 3704 relevant lines covered (20.55%)

3.56 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/crates/macros/src/fastcall.rs
1
use proc_macro2::{Span, TokenStream};
2
use quote::ToTokens;
3
use syn::{ItemFn, LitStr};
4

5
#[cfg(windows)]
6
const ABI: &str = "vectorcall";
7
#[cfg(not(windows))]
8
const ABI: &str = "C";
9

10
/// Parses a function and sets the correct ABI to interact with PHP depending
11
/// on the OS.
12
///
13
/// On Windows, this sets the extern ABI to vectorcall while on all other OS
14
/// it sets it to C.
15
pub fn parser(mut input: ItemFn) -> TokenStream {
×
16
    if let Some(abi) = &mut input.sig.abi {
×
17
        abi.name = Some(LitStr::new(ABI, Span::call_site()));
×
18
    }
19
    input.to_token_stream()
×
20
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc