Lines Matching refs:source

26             var source = @"  in ShouldFindVariableFromUsing()
31 ProcessSource(null, source, a); in ShouldFindVariableFromUsing()
40 var source = @" in ShouldNotFindLocalVariableFromUsing()
45 var exception = Assert.Throws<ParsingException>(() => ProcessSource(null, source, a)); in ShouldNotFindLocalVariableFromUsing()
52 var source = @" in ShouldFindVariableFromNestedUsing()
65 ProcessSource(null, source, a, b); in ShouldFindVariableFromNestedUsing()
71 var source = @" in ShouldAllowReverseVariableDependency()
79 ProcessSource(null, source, a); in ShouldAllowReverseVariableDependency()
85 var source = @" in ShouldFindPrefixedVariable()
93 ProcessSource(null, source, a); in ShouldFindPrefixedVariable()
99 var source = @" in ShouldFindNestedPrefixedVariable()
114 ProcessSource(null, source, a, b); in ShouldFindNestedPrefixedVariable()
120 var source = @" in ShouldFollowAttributeOverrideOrder0()
147 ProcessSource(machine, source, a, b, c); in ShouldFollowAttributeOverrideOrder0()
156 var source = @" in ShouldFollowAttributeOverrideOrder1()
185 ProcessSource(machine, source, a, b, c); in ShouldFollowAttributeOverrideOrder1()
194 var source = @" in ShouldFollowAttributeOverrideOrder2()
211 ProcessSource(machine, source, a, b); in ShouldFollowAttributeOverrideOrder2()
220 var source = @" in ShouldFollowAttributeOverrideOrder3()
245 ProcessSource(machine, source, a, b, c); in ShouldFollowAttributeOverrideOrder3()
254 var source = @" in ShouldFollowAttributeOverrideOrder4()
276 ProcessSource(machine, source, a, b); in ShouldFollowAttributeOverrideOrder4()
285 var source = @" in ShouldFailOnDuplicateUsingEntry()
306 … var exception = Assert.Throws<ParsingException>(() => ProcessSource(null, source, a, b)); in ShouldFailOnDuplicateUsingEntry()
318 var source = @" in ShouldHandleIrqDestinationOnPrefixing()
321 ProcessSource(null, source, a); in ShouldHandleIrqDestinationOnPrefixing()
335 var source = @" in ShouldFailOnRecurringUsings()
339 … var exception = Assert.Throws<ParsingException>(() => ProcessSource(null, source, a, b)); in ShouldFailOnRecurringUsings()
350 var source = @" in ShouldFailOnDirectlyRecurringUsings()
354 var exception = Assert.Throws<ParsingException>(() => ProcessSource(null, source, a)); in ShouldFailOnDirectlyRecurringUsings()
361 var source = @" in ShouldFailOnNonExistingUsingFile()
364 var exception = Assert.Throws<ParsingException>(() => ProcessSource(null, source)); in ShouldFailOnNonExistingUsingFile()