Lines Matching full:equal
136 assert.equal(curScope.name, 'curScope');
137 assert.equal(curScope.kind, ScopeKind.GLOBAL);
138 assert.equal(curScope.block, sourceFile);
139 assert.equal(curScope.parent, undefined);
146 assert.equal(curScope.loc, 'curScope');
219 assert.equal(curScope.getSymbolLocation(symbol), 'testSymbol');
226 assert.equal(curScope.getSymbolLocation(symbol), '');
236 assert.equal(curScope.getLabelLocation(label), 'testLabel');
243 assert.equal(curScope.getLabelLocation(label), '');
259 assert.equal(label.name, labeledStatement.label.text);
260 assert.equal(label.locInfo, `$0_${labeledStatement.label.text}`);
262 assert.equal(label.parent, undefined);
264 assert.equal(label.scope, curScope);
279 assert.equal(label.name, labeledStatement.label.text);
280 assert.equal(label.locInfo, `$1_${labeledStatement.label.text}`);
282 assert.equal(label.parent, parentLabel);
284 assert.equal(label.scope, curScope);