System.Data.SQLite

Check-in [bd8381491a]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Adapt to an upcoming change in the Eagle core library.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: bd8381491a6f3dca1b2db4f04c30da988280845a
User & Date: mistachkin 2015-12-13 02:45:19.489
Context
2015-12-15
01:41
Remove superfluous namespace qualifier. check-in: 24f6fae867 user: mistachkin tags: trunk
2015-12-13
02:45
Adapt to an upcoming change in the Eagle core library. check-in: bd8381491a user: mistachkin tags: trunk
2015-12-12
17:02
Adjust flags passed from the setup to the design-time components installer. check-in: 6fd6496dd0 user: mistachkin tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to lib/System.Data.SQLite/common.eagle.
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379



2380
2381
2382
2383
2384
2385
2386
          #
          # NOTE: Install the callback script to be evaluated in the isolated
          #       interpreter when this interpreter is interrupted by script
          #       cancellation, etc.
          #
          debug callback apply {{sender e} {
            #
            # NOTE: Check if this callback is one that we care about.
            #
            if {"Canceled" in [split [$e InterruptType] ", "]} then {



              #
              # NOTE: Make sure the [object] command is available.  Since
              #       this is an isolated interpreter, check for it the hard
              #       way.
              #
              if {[llength [info commands object]] > 0} then {
                #







|

|
>
>
>







2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
          #
          # NOTE: Install the callback script to be evaluated in the isolated
          #       interpreter when this interpreter is interrupted by script
          #       cancellation, etc.
          #
          debug callback apply {{sender e} {
            #
            # NOTE: Check if this debugger callback is one that we care about.
            #
            set interruptTypes [split [$e InterruptType] ", "]

            if {"Canceled" in $interruptTypes || \
                "Unwound" in $interruptTypes} then {
              #
              # NOTE: Make sure the [object] command is available.  Since
              #       this is an isolated interpreter, check for it the hard
              #       way.
              #
              if {[llength [info commands object]] > 0} then {
                #