Brian Nickel

Results 6 issues of Brian Nickel

Less allows (or gracefully handles) spaces in merge declarations, like `filter +_: blur(2px);` but throws an exception in postcss. This happens inside after tokenization inside `decl` so it looks like...

c³ ⋅ PR welcome

This builds on #1166. This idea is a little half baked but, [a selector can be any finite UTF-8-encodable string](https://developer.apple.com/documentation/foundation/1395294-nsselectorfromstring), so why do we need to call `c99ExtendedIdentifier`? (Even `:`...

## Problem statement Today, if I click to run `FunctionalTests_ItSpec` in Xcode, I get the following **expected** output: ``` Test Suite 'Selected tests' started at 2022-09-02 12:41:16.743 Test Suite 'QuickTests.xctest'...

# Problem statement Often times in testing, I have assertions that render the rest of the test moot or dangerous. For example: ``` it("creates three good objects") { expect(array).to(haveCount(3)) expect(array[0]).to(lookLikeBaz())...

enhancement

Sending the parser `@"1.0"` does not result in a value because the parser does not know if more data is pending. Conversely `@"true"`, `@"null"`, and `@\"test\""` work because the parser...

This looks like an edge case but I struggled to diagnose it for a few hours. My podspec looks like this: ``` Pod::Spec.new do |s| s.name = 'MyLib' s.version =...