當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Map.get函數代碼示例

本文整理匯總了TypeScript中@dojo/shim/Map.get函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript get函數的具體用法?TypeScript get怎麽用?TypeScript get使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了get函數的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: method

				assert.doesNotThrow(function () {
					const method = map.get('method');
					method && method();
				});
開發者ID:dylans,項目名稱:core,代碼行數:4,代碼來源:aspect.ts

示例2: getProcess

export function getProcess(id: string) {
	return processMap.get(id);
}
開發者ID:dojo,項目名稱:stores,代碼行數:3,代碼來源:process.ts

示例3: beforeEach

	'with maps': {

		beforeEach() {
			methodSpy = sinon.spy(function (a: number) {
				return a + 1;
			});
			map = new Map([ [ 'method', methodSpy ] ]);
		},

		'.before': {
			'return value passed as arguments'() {
				let aspectSpy = createBeforeSpy();

				aspect.before(map, 'method', aspectSpy);

				const method = map.get('method');
				method && method(0);
				assert.isTrue(aspectSpy.calledBefore(methodSpy));
				assert.isTrue(aspectSpy.calledOnce);
				assert.isTrue(methodSpy.calledOnce);
				assert.strictEqual(aspectSpy.lastCall.args[0], 0);
				assert.strictEqual(methodSpy.lastCall.args[0], 1);
				assert.strictEqual(methodSpy.returnValues[0], 2);
			},

			'no return value from advising function'() {
				let receivedArgs: string[] = [];
				let beforeCalled = false;
				map = new Map([ [ 'method', function (...args: string[]) {
						receivedArgs = args;
					} ] ]);
開發者ID:dylans,項目名稱:core,代碼行數:31,代碼來源:aspect.ts

示例4: mapTests

function mapTests(property: string | symbol): ObjectSuiteDescriptor {
	return {
		beforeEach() {
			methodSpy = sinon.spy(function (a: number) {
				return a + 1;
			});
			map = new Map([ [ property, methodSpy ] ]);
		},

		tests: {
			'.before': {
				'return value passed as arguments'() {
					let aspectSpy = createBeforeSpy();

					aspect.before(map, property, aspectSpy);

					const method = map.get(property);
					method && method(0);
					assert.isTrue(aspectSpy.calledBefore(methodSpy));
					assert.isTrue(aspectSpy.calledOnce);
					assert.isTrue(methodSpy.calledOnce);
					assert.strictEqual(aspectSpy.lastCall.args[0], 0);
					assert.strictEqual(methodSpy.lastCall.args[0], 1);
					assert.strictEqual(methodSpy.returnValues[0], 2);
				},

				'no return value from advising function'() {
					let receivedArgs: string[] = [];
					let beforeCalled = false;
					map = new Map([ [ property, function (...args: string[]) {
							receivedArgs = args;
						} ] ]);

					aspect.before(map, property, function () {
						beforeCalled = true;
					});

					const method = map.get(property);
					method && method('foo', 'bar');

					assert.isTrue(beforeCalled,
						'Before advice should be called before original function');
					assert.deepEqual(receivedArgs, [ 'foo', 'bar' ],
						'Arguments passed to original method should be unaltered if before advice returns undefined');
				},

				'multiple aspect.before()'() {
					const aspectSpy1 = createBeforeSpy();
					const aspectSpy2 = createBeforeSpy();

					aspect.before(map, property, aspectSpy1);
					aspect.before(map, property, aspectSpy2);

					const method = map.get(property);
					method && method(5);
					assert.isTrue(aspectSpy2.calledBefore(aspectSpy1));
					assert.isTrue(aspectSpy1.calledBefore(methodSpy));
					assert.strictEqual(aspectSpy2.lastCall.args[0], 5);
					assert.strictEqual(aspectSpy1.lastCall.args[0], 6);
					assert.strictEqual(methodSpy.lastCall.args[0], 7);
					assert.strictEqual(methodSpy.returnValues[0], 8);
				},

				'multiple aspect.before() with removal inside handler'() {
					let count = 0;

					const handle1 = aspect.before(map, property, function () {
						count++;
					});

					// FIXME: TDZ
					var handle2 = aspect.before(map, property, function () {
						handle2.destroy();
						handle1.destroy();
						count++;
					});

					assert.doesNotThrow(function () {
						const method = map.get(property);
						method && method();
					});
					assert.strictEqual(count, 1, 'Only one advising function should be called');
				}
			},

			'.after': {
				'overriding return value from original method'() {
					const expected = 'override!';
					const aspectSpy = sinon.stub().returns(expected);

					aspect.after(map, property, aspectSpy);
					const method = map.get(property);
					assert.strictEqual(method && method(0), expected);
					assert.isTrue(aspectSpy.calledAfter(methodSpy));
				},

				'multiple aspect.after()'() {
					const aspectStub1 = sinon.stub();
					const aspectStub2 = sinon.stub();

//.........這裏部分代碼省略.........
開發者ID:bryanforbes,項目名稱:core,代碼行數:101,代碼來源:aspect.ts


注:本文中的@dojo/shim/Map.get函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。