This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Checks if the actual object is an instance of the expected type; | |
// the functional object `expected` can be any ancestor prototype. | |
// | |
// Example: | |
// expects(new Backbone.Model()).toBeInstanceOf(Backbone.Model); | |
jasmine.Matchers.prototype.toBeInstanceOf = function(expected) { | |
var actual = this.actual, | |
notText = this.isNot ? ' not' : ''; | |
this.message = function() { | |
return 'Expected ' + actual + notText + ' to be an instance of ' + expected; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ALTER PROCEDURE [dbo].[TempGetStateItem3] | |
@id tSessionId, | |
@itemShort tSessionItemShort OUTPUT, | |
@locked bit OUTPUT, | |
@lockAge int OUTPUT, | |
@lockCookie int OUTPUT, | |
@actionFlags int OUTPUT | |
AS | |
DECLARE @textptr AS tTextPtr, @length AS int, @extendExpiration bit, @now AS datetime = GETUTCDATE(); |